Skip to content

Commit a67e36c

Browse files
committed
Align make check with CI pipeline
1 parent 818344c commit a67e36c

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/tests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@ jobs:
2525
- name: Run lint
2626
run: make lint
2727

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+
2842
typecheck:
2943
runs-on: ubuntu-latest
3044
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ deploy-docs:
6161
uv run mkdocs gh-deploy --force --verbose
6262

6363
.PHONY: check
64-
check: format-check lint mypy tests
64+
check: format-check lint mypy coverage

0 commit comments

Comments
 (0)