Skip to content

Commit

Permalink
Check dists with twine
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
  • Loading branch information
pombredanne committed Feb 13, 2024
1 parent 6f4f640 commit f5f3d3b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/test-and-build.yml
Expand Up @@ -110,16 +110,24 @@ jobs:

merge:
runs-on: ubuntu-latest
needs:
- build_sdist
- build_wheels
needs: [build_sdist, build_wheels]
steps:
- name: Merge created wheels and sdist in a single zip
uses: actions/upload-artifact/merge@v4
with:
name: intbitset-build
pattern: intbitset-*

check_dist:
name: Check distributions are PyPi-correct
needs: merge
runs-on: ubuntu-22.04
steps:
- uses: actions/download-artifact@v4
with:
path: intbitset-build
- run: pipx run twine check --strict intbitset-build/*

test_on_many_oses:
name: Run tests ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit f5f3d3b

Please sign in to comment.