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.
1 parent 412e618 commit a23657fCopy full SHA for a23657f
.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,7 @@ jobs:
15
with:
16
python-version: 3.8
17
- run: |
18
- python -m pip install --upgrade build
+ pip3 install --upgrade build
19
python -m build
20
- uses: actions/upload-artifact@v3
21
0 commit comments