Skip to content

Commit 35e590f

Browse files
committed
Nicer job names
1 parent bbbc3b5 commit 35e590f

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,21 @@ jobs:
4646
strategy:
4747
matrix:
4848
checks:
49-
- advisories
50-
- bans licenses sources
49+
- 'security advisories'
50+
- 'banned licenses and crates'
5151

5252
# Prevent sudden announcement of a new advisory from failing ci:
53-
continue-on-error: ${{ matrix.checks == 'advisories' }}
53+
continue-on-error: ${{ matrix.checks == 'security advisories' }}
5454

5555
steps:
5656
- uses: actions/checkout@v2
5757

5858
- uses: EmbarkStudios/cargo-deny-action@v1
59+
if matrix.checks == 'security advisories'
5960
with:
60-
command: check ${{ matrix.checks }}
61+
command: check advisories
62+
63+
- uses: EmbarkStudios/cargo-deny-action@v1
64+
if matrix.checks == 'banned licenses and crates'
65+
with:
66+
command: check bans licenses sources

0 commit comments

Comments
 (0)