Skip to content

Commit

Permalink
tidy up linting
Browse files Browse the repository at this point in the history
  • Loading branch information
alimanfoo committed Dec 4, 2024
1 parent 8648d1c commit 00260bc
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,21 @@ jobs:
fail-fast: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Checkout source
uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: pre-commit/action@v3.0.0
- name: Install mypy
run: pip install mypy
cache: 'pip'

- name: Run pre-commit checks
uses: pre-commit/action@v3.0.0

- name: Install package
run: pip install .[dev]

- name: Run mypy
run: |
mypy malariagen_data tests --ignore-missing-imports

0 comments on commit 00260bc

Please sign in to comment.