Skip to content

Commit a42f26a

Browse files
committed
Update CI
1 parent 9bca6e5 commit a42f26a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
with:
1818
enable-cache: true
1919

20+
- name: Install just
21+
uses: extractions/setup-just@v3
22+
2023
- name: Install dependencies
2124
run: uv sync --only-dev
2225

@@ -27,4 +30,4 @@ jobs:
2730
key: precommit-${{ hashFiles('.pre-commit-config.yaml') }}
2831

2932
- name: Run pre-commit
30-
run: uv run pre-commit run --all-files
33+
run: just fmt

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ jobs:
1717
with:
1818
enable-cache: true
1919

20+
- name: Install just
21+
uses: extractions/setup-just@v3
22+
2023
- name: Install dependencies
2124
run: uv sync
2225

2326
- name: Run tests and generate coverage report
24-
run: make coverage
27+
run: just cov

0 commit comments

Comments
 (0)