ci: add type checking to ci

This commit is contained in:
Marc 2024-11-15 23:22:32 -05:00
parent 0b2a911405
commit 3e097f43ca
Signed by: marc
GPG key ID: 048E042F22B5DC79

View file

@ -13,6 +13,10 @@ jobs:
run: pipx run pre-commit run check-yaml -a
- name: Validate shell scripts
run: pipx run pre-commit run shellcheck -a
- name: Check types
run: |
pipx install .
pipx run pre-commit run pyright -a
export-trace:
runs-on: runner-latest
needs: [static-analysis]