ci: add type checking to ci
This commit is contained in:
parent
0b2a911405
commit
3e097f43ca
1 changed files with 4 additions and 0 deletions
|
@ -13,6 +13,10 @@ jobs:
|
||||||
run: pipx run pre-commit run check-yaml -a
|
run: pipx run pre-commit run check-yaml -a
|
||||||
- name: Validate shell scripts
|
- name: Validate shell scripts
|
||||||
run: pipx run pre-commit run shellcheck -a
|
run: pipx run pre-commit run shellcheck -a
|
||||||
|
- name: Check types
|
||||||
|
run: |
|
||||||
|
pipx install .
|
||||||
|
pipx run pre-commit run pyright -a
|
||||||
export-trace:
|
export-trace:
|
||||||
runs-on: runner-latest
|
runs-on: runner-latest
|
||||||
needs: [static-analysis]
|
needs: [static-analysis]
|
||||||
|
|
Loading…
Reference in a new issue