File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 run : uv sync --locked --group dev
2323
2424 - name : Check code
25- run : uv run make check
25+ run : uv run make check-ci
2626
2727 - name : Test with Docker
2828 env :
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ pip-audit:
6565 $(PIP_AUDIT )
6666
6767# Code quality
68- .PHONY : slotscheck lint test check
68+ .PHONY : slotscheck lint test check check-ci
6969slotscheck :
7070 $(SLOTSCHECK ) src
7171
8787check : lint test
8888 coverage html
8989
90+ check-ci :
91+ ruff check
92+ ruff format --check
93+ tombi format --check
94+ tombi lint
95+ deptry
96+ $(MAKE ) slotscheck
97+ lint-imports
98+ mypy
99+ pytest -v \
100+ $(PYTEST_PATHS_LIGHT ) \
101+ $(PYTEST_ARGS_COV )
102+ coverage html
103+
90104# Docker compose
91105.PHONY : docker-env local-env upd up upd-local up-local down stop-all
92106docker-env :
You can’t perform that action at this time.
0 commit comments