Skip to content

Commit

Permalink
Fixup CI and run type checking in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Jun 19, 2024
1 parent ecfeda0 commit 6ec5d55
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
checks:
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
needs: [pre-commit]
strategy:
fail-fast: false
matrix:
Expand All @@ -44,6 +43,9 @@ jobs:
- name: Install package
run: python -m pip install .[test]

- name: Type-check package
run: mypy

- name: Test package
run: >-
python -m pytest -ra --cov --cov-report=xml --cov-report=term
Expand Down

0 comments on commit 6ec5d55

Please sign in to comment.