File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111jobs :
1212 hygiene :
1313 runs-on : ubuntu-latest
14- name : Ruff
14+ name : Hygiene check
1515 steps :
1616 - uses : actions/checkout@v3
1717 - name : setup-python
2121 architecture : " x64"
2222 - name : Install uv
2323 uses : astral-sh/setup-uv@v6
24- - name : Ruff format
25- run : uv run ruff format --check
26- - name : Ruff check
27- run : uv run ruff check
28- - name : Basedpyright check
29- run : uv run basedpyright
30-
24+ - name : Install project
25+ run : uv sync
26+ - name : Install pre-commit
27+ run : pip install pre-commit
28+ - name : Pre-commit checks on all files
29+ run : pre-commit run --all-files
Original file line number Diff line number Diff line change @@ -44,9 +44,6 @@ dependencies = [
4444dev = [
4545 " pytest" ,
4646 " pytest-cov" ,
47- " black" ,
48- " ruff>=0.12.8" ,
49- " basedpyright>=1.31.1" ,
5047]
5148
5249[project .urls ]
You can’t perform that action at this time.
0 commit comments