Skip to content

Commit

Permalink
fix stub check
Browse files Browse the repository at this point in the history
  • Loading branch information
trvto committed Aug 30, 2023
1 parent 0148992 commit b72dffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ jobs:
pip install -U mypy
cd pytket
./stub_generation/regenerate_stubs
git diff --quiet pytket/pytket/_tket && echo "Stubs are up-to-date" || exit 1 # fail if stubs change after regeneration
git diff --quiet pytket/_tket && echo "Stubs are up-to-date" || exit 1 # fail if stubs change after regeneration
mypy --config-file=mypy.ini --no-incremental -p pytket -p tests
- name: Upload package
if: github.event_name == 'push' && github.ref == 'refs/heads/develop' && needs.check_changes.outputs.tket_changed == 'true'
Expand Down

0 comments on commit b72dffa

Please sign in to comment.