We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 818344c commit a67e36cCopy full SHA for a67e36c
.github/workflows/tests.yml
@@ -25,6 +25,20 @@ jobs:
25
- name: Run lint
26
run: make lint
27
28
+ format-check:
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - name: Checkout repository
32
+ uses: actions/checkout@v4
33
+ - name: Setup uv
34
+ uses: astral-sh/setup-uv@v5
35
+ with:
36
+ enable-cache: true
37
+ - name: Install dependencies
38
+ run: make sync
39
+ - name: Run format check
40
+ run: make format-check
41
+
42
typecheck:
43
runs-on: ubuntu-latest
44
steps:
Makefile
@@ -61,4 +61,4 @@ deploy-docs:
61
uv run mkdocs gh-deploy --force --verbose
62
63
.PHONY: check
64
-check: format-check lint mypy tests
+check: format-check lint mypy coverage
0 commit comments