File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,22 @@ concurrency:
99 group : ${{ github.event_name }}-${{ github.ref }}
1010
1111jobs :
12+ typing :
13+ name : Run type checking
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Checkout
17+ uses : actions/checkout@v5
18+
19+ - name : Install uv
20+ uses : astral-sh/setup-uv@v7
21+
22+ - name : Install deps
23+ run : uv sync --all-groups
24+
25+ - name : Run type checker
26+ run : uv run basedpyright
27+
1228 test :
1329 name : Run tests & display coverage
1430 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 77 # Renovate updates the file. We can't disable pre-commit CI's autoupdate entirely
88 # but this is the least frequent we can make it.
99 autoupdate_schedule : quarterly
10+ skip : [basedpyright]
1011
1112repos :
1213 - repo : https://github.com/pre-commit/pre-commit-hooks
You can’t perform that action at this time.
0 commit comments