Skip to content

Commit

Permalink
feat(ci): check for duplicate dependencies with optional features off
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Feb 20, 2022
1 parent c24802a commit ff6d792
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
strategy:
matrix:
checks:
- bans
- bans
- sources

# Prevent sudden announcement of a new advisory from failing ci:
Expand All @@ -244,3 +244,10 @@ jobs:
with:
command: check ${{ matrix.checks }}
args: --all-features --workspace

# this check runs with optional features off
# so we expect some warnings about "skip tree root was not found"
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}
args: --workspace

0 comments on commit ff6d792

Please sign in to comment.