We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d23830a commit 9b2e890Copy full SHA for 9b2e890
1 file changed
.github/workflows/CI.yml
@@ -44,9 +44,9 @@ jobs:
44
- name: Oxlint
45
run: yarn lint
46
- name: Cargo fmt
47
- run: cargo fmt --locked -- --check
+ run: cargo --locked fmt -- --check
48
- name: Clippy
49
- run: cargo clippy --locked -- -D warnings
+ run: cargo --locked clippy -- -D warnings
50
test:
51
name: Rust tests
52
runs-on: ubuntu-latest
@@ -58,7 +58,7 @@ jobs:
58
- name: Compile
59
run: cargo check --locked
60
- name: Test
61
- run: cargo nextest
+ run: cargo --locked nextest
62
build:
63
strategy:
64
fail-fast: false
0 commit comments