Skip to content

Commit

Permalink
ci: Build pypff-stubs wheels too
Browse files Browse the repository at this point in the history
  • Loading branch information
kmurphy4 committed Sep 26, 2024
1 parent 486090f commit 762765b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,17 @@ jobs:
run: |
python -m pip install \
'build' \
'mypy' \
'setuptools>=65' \
'wheel'
- name: Build libpff-python wheel
run: |
python -m build --no-isolation --outdir=dist --wheel
python -m pip install --no-index --find-links=dist libpff-python
python tests/runtests.py
- name: Build pypff-stubs wheel
working-directory: stubs
run: |
python -m build --outdir=dist --wheel
python -m pip install --no-index --find-links=dist pypff-stubs
mypy --strict -c 'import pypff; reveal_type(pypff.file)'

0 comments on commit 762765b

Please sign in to comment.