There was an error while loading. Please reload this page.
1 parent c0819a4 commit ae28ed1Copy full SHA for ae28ed1
1 file changed
.github/workflows/build.yml
@@ -40,13 +40,19 @@ jobs:
40
run: cargo clippy -p ${{ crate-name } --features ${{ default-features }} --no-deps
41
working-directory: ${{ crate-path }}
42
43
- - name: Check for Crate Duplication
44
- run: cargo deny check bans
45
- working-directory: ${{ crate-path }}
46
-
47
- - name: Check for Advisories
48
- run: cargo deny check advisories
49
+ cargo-deny:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ checks:
+ - advisories
+ - bans
50
+ continue-on-error: ${{ matrix.checks == 'advisories' }}
51
+ steps:
52
+ - uses: actions/checkout@v2
53
+ - uses: EmbarkStudios/cargo-deny-action@v2
54
+ with:
55
+ command: check ${{ matrix.checks }}
56
57
test:
58
name: Run Host Tests
0 commit comments