We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74e69c9 + a23657f commit 8df7c01Copy full SHA for 8df7c01
.github/workflows/build.yml
@@ -30,4 +30,8 @@ jobs:
30
pipenv run mypy --install-types --non-interactive src/
31
pipenv run mypy -p src
32
- name: Run unit tests
33
- run: pipenv run pytest -vv -s -m unit
+ run: pipenv run pytest -vv -s -m unit
34
+ - name: Run a test build
35
+ run: |
36
+ pipenv run pip3 install --upgrade build
37
+ pipenv run python -m build
.github/workflows/release.yml
@@ -15,7 +15,8 @@ jobs:
15
with:
16
python-version: 3.8
17
- run: |
18
- python setup.py sdist
+ pip3 install --upgrade build
19
+ python -m build
20
- uses: actions/upload-artifact@v3
21
22
path: ./dist
0 commit comments