Skip to content

Commit

Permalink
Check PEP440 compliance in CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed Jul 13, 2023
1 parent f229b82 commit 69ae8ba
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
- name: Run twine check
run: twine check dist/*

- name: Check PEP440 compliance
run: |
pip install packaging setuptools_scm
python -c "import packaging.version as v; v.Version(\"$(python -m setuptools_scm)\")"
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 69ae8ba

Please sign in to comment.