Skip to content

Commit

Permalink
ci: add type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
gcushen authored Oct 2, 2023
1 parent 3c01c90 commit d12c3fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test, lint, format
name: Test, lint, format, type check

on: [push, pull_request]

Expand Down Expand Up @@ -31,6 +31,9 @@ jobs:
run: |
poetry run isort --profile black --diff .
poetry run black --check .
- name: Type checks
run: |
poetry run pyright
# - name: Report Coverage
# if: matrix.python-version == '3.11'
# uses: codecov/codecov-action@v3
Expand Down

0 comments on commit d12c3fb

Please sign in to comment.