1 parent 1e709f1 commit 9ade380Copy full SHA for 9ade380
2 files changed
.github/workflows/ci.yml
@@ -23,6 +23,7 @@ jobs:
23
# needs double-specifying to affect cache
24
python-version: "${{ matrix.python-version }}"
25
- run: uv sync
26
+ - run: make ruff
27
- run: make mypy
28
- run: make pytest
29
Makefile
@@ -1,4 +1,8 @@
1
-lint: mypy
+lint: mypy ruff
2
+
3
+ruff:
4
+ uv run ruff check
5
+ uv run ruff format --check
6
7
mypy:
8
uv run mypy csql tests
0 commit comments