File tree Expand file tree Collapse file tree 4 files changed +33
-0
lines changed
Expand file tree Collapse file tree 4 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 44 workflow_dispatch :
55 pull_request :
66 push :
7+ branches :
8+ - master
79
810jobs :
911 python-black :
Original file line number Diff line number Diff line change 1+ name : python
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+ push :
7+ branches :
8+ - master
9+
10+ jobs :
11+ basedpyright :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v4
15+
16+ - name : Install uv
17+ uses : astral-sh/setup-uv@v5
18+
19+ - name : Install the project
20+ run : uv sync --all-extras --dev
21+
22+ - name : Run basedpyright
23+ run : uv run basedpyright **/*.py
Original file line number Diff line number Diff line change 11# Packages
22/clangd_tidy /_dist_ver.py
33
4+ # uv
5+ uv.lock
6+
47# Byte-compiled / optimized / DLL files
58__pycache__ /
69* .py [cod ]
Original file line number Diff line number Diff line change @@ -41,3 +41,8 @@ include = ["clangd_tidy"]
4141pythonVersion = " 3.8"
4242pythonPlatform = " Linux"
4343typeCheckingMode = " strict"
44+
45+ [dependency-groups ]
46+ dev = [
47+ " basedpyright"
48+ ]
You can’t perform that action at this time.
0 commit comments