Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a mypy job
Browse files Browse the repository at this point in the history
Based on @jan-janssen's jobs for other pyiron repos

Signed-off-by: liamhuber <[email protected]>
liamhuber committed Jan 8, 2025
1 parent 85f95d2 commit 9895187
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/push-pull.yml
Original file line number Diff line number Diff line change
@@ -19,3 +19,18 @@ jobs:
alternate-tests-env-files: .ci_support/lower_bound.yml
alternate-tests-python-version: '3.10'
alternate-tests-dir: tests/unit

mypy:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
architecture: x64
- name: Checkout
uses: actions/checkout@v4
- name: Install mypy
run: pip install mypy
- name: Test
run: mypy --ignore-missing-imports ${{ github.event.repository.name }}

0 comments on commit 9895187

Please sign in to comment.