We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19b82c5 commit fd52dccCopy full SHA for fd52dcc
.github/workflows/ci.yml
@@ -28,7 +28,7 @@ jobs:
28
- name: Compile
29
run: cargo check --locked
30
- name: Test
31
- run: cargo nextest run
+ run: make test
32
33
lint:
34
runs-on: ubuntu-latest
@@ -39,6 +39,4 @@ jobs:
39
components: clippy, rustfmt
40
- uses: Swatinem/rust-cache@v2
41
- name: Run cargo clippy (deny warnings)
42
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
43
- - name: Run cargo fmt (check if all code is rustfmt-ed)
44
- run: cargo fmt --all --check
+ run: make lint
0 commit comments