Run all the duplicate dependency checks even if one fails (#6660)
This commit is contained in:
parent
0e2407da79
commit
a52178cfe7
|
@ -250,6 +250,8 @@ jobs:
|
||||||
- bans
|
- bans
|
||||||
- sources
|
- sources
|
||||||
features: ['', '--all-features', '--no-default-features']
|
features: ['', '--all-features', '--no-default-features']
|
||||||
|
# We always want to run the --all-features job, because it gives accurate "skip tree root was not found" warnings
|
||||||
|
fail-fast: false
|
||||||
|
|
||||||
# Prevent sudden announcement of a new advisory from failing ci:
|
# Prevent sudden announcement of a new advisory from failing ci:
|
||||||
continue-on-error: ${{ matrix.checks == 'advisories' }}
|
continue-on-error: ${{ matrix.checks == 'advisories' }}
|
||||||
|
@ -259,8 +261,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
# this check also runs with optional features off
|
# The --all-features job is the only job that gives accurate "skip tree root was not found" warnings.
|
||||||
# so we expect some warnings about "skip tree root was not found"
|
# In other jobs, we expect some of these warnings, due to disabled features.
|
||||||
- name: Check ${{ matrix.checks }} with features ${{ matrix.features }}
|
- name: Check ${{ matrix.checks }} with features ${{ matrix.features }}
|
||||||
uses: EmbarkStudios/cargo-deny-action@v1
|
uses: EmbarkStudios/cargo-deny-action@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue