Skip to content

Commit 3007563

Browse files
committed
feat: install dependencies on build
1 parent a5b4202 commit 3007563

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/semantic-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
--user
2626
- name: Build a binary wheel and a source tarball
2727
run: python3 -m build
28+
- name: Install dependencies
29+
run: make setup
2830
- name: Test the package before release
2931
run: make test
3032
release:

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
run:
2-
python app.py
3-
41
setup: requirements.txt
52
pip install -r requirements.txt
63

7-
clean:
8-
rm -rf __pycache__
9-
104
test:
115
python -m unittest discover ./tests/asyncapi_python_parser_jonaslagoni
126

0 commit comments

Comments
 (0)