We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b309a commit 3cf6e75Copy full SHA for 3cf6e75
.github/workflows/build.yaml
@@ -31,7 +31,7 @@ jobs:
31
- name: Install Rust
32
uses: dtolnay/rust-toolchain@stable
33
with:
34
- toolchain: 1.87
+ toolchain: 1.88
35
36
- name: Install dependencies
37
run: |
@@ -41,8 +41,10 @@ jobs:
41
- name: lint code
42
run: cargo fmt --all -- --check
43
44
- - name: audit code
45
- run: cargo audit
+ - name: cargo audit
+ run: |
46
+ cargo install cargo-audit --locked
47
+ cargo audit
48
49
- name: Run Clippy
50
run: cargo clippy --all -- -D warnings
@@ -71,7 +73,7 @@ jobs:
71
73
72
74
75
76
77
targets: ${{ matrix.config.target }}
78
- name: Install Spin
79
uses: rajatjindal/setup-actions/spin@main
0 commit comments