We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bca6e5 commit a42f26aCopy full SHA for a42f26a
.github/workflows/lint.yml
@@ -17,6 +17,9 @@ jobs:
17
with:
18
enable-cache: true
19
20
+ - name: Install just
21
+ uses: extractions/setup-just@v3
22
+
23
- name: Install dependencies
24
run: uv sync --only-dev
25
@@ -27,4 +30,4 @@ jobs:
27
30
key: precommit-${{ hashFiles('.pre-commit-config.yaml') }}
28
31
29
32
- name: Run pre-commit
- run: uv run pre-commit run --all-files
33
+ run: just fmt
.github/workflows/test.yml
@@ -17,8 +17,11 @@ jobs:
run: uv sync
26
- name: Run tests and generate coverage report
- run: make coverage
+ run: just cov
0 commit comments