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 d213597 commit 245af89Copy full SHA for 245af89
.github/workflows/rust.yml
@@ -22,19 +22,6 @@ jobs:
22
- run: just rs-clippy
23
- run: just rs-test-build
24
- run: just rs-test
25
-
26
- audit:
27
- timeout-minutes: 5
28
- runs-on: ubuntu-22.04
29
- strategy:
30
- matrix:
31
- checks:
32
- - advisories
33
- - bans licenses sources
34
- # Prevent sudden announcement of a new advisory from failing Ci.
35
- continue-on-error: ${{ matrix.checks == 'advisories' }}
36
- steps:
37
- - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
38
- - uses: EmbarkStudios/cargo-deny-action@0484eedcba649433ebd03d9b7c9c002746bbc4b9
39
- with:
40
- command: check ${{ matrix.checks }}
+ - run: cargo deny --all-features check bans licenses sources
+ - run: cargo deny --all-features check advisories
+ continue-on-error: true
0 commit comments