Skip to content

Commit

Permalink
fix(ci): only verify dist package format on Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
msiemens committed Apr 9, 2021
1 parent 36ab3fb commit a71c8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
poetry build
twine check dist/*
if: ${{ !contains(matrix.python-version, '3.7') && !contains(matrix.python-version, '3.6') }}
if: ${{ contains(matrix.python-version, '3.9') }}
- name: Upload coverage result
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
Expand Down

0 comments on commit a71c8b9

Please sign in to comment.