File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -267,11 +267,19 @@ jobs:
267
267
run : cargo fmt -- --check
268
268
- name : Format (manifest)
269
269
run : cargo verify-project
270
- - run : cargo audit
271
- - run : cargo outdated --root-deps-only --exit-code 1
270
+ - name : Cargo outdated
271
+ run : cargo outdated --root-deps-only --exit-code 1
272
+
272
273
- name : Clippy (wasm32-unknown-unknown)
273
274
run : cargo clippy --release --all-targets --target=wasm32-unknown-unknown
274
275
- name : Build (wasm32-unknown-unknown)
275
276
run : cargo build --release --all-targets --target=wasm32-unknown-unknown
276
277
- name : Build (wasm32-wasi)
277
278
run : cargo build --release --all-targets --target=wasm32-wasi
279
+
280
+ - name : Cargo audit
281
+ if : matrix.example == 'hello_world'
282
+ run : cargo audit --ignore RUSTSEC-2020-0159
283
+ - name : Cargo audit
284
+ if : matrix.example !== 'hello_world'
285
+ run : cargo audit
You can’t perform that action at this time.
0 commit comments