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 f61890f commit b82f7dcCopy full SHA for b82f7dc
.github/workflows/cargo-deny.yml
@@ -1,10 +1,8 @@
1
name: cargo-deny
2
on:
3
push:
4
- pull_request:
5
-defaults:
6
- run:
7
- shell: bash
+ branches:
+ - main
8
jobs:
9
cargo-deny:
10
runs-on: ubuntu-20.04
@@ -13,11 +11,6 @@ jobs:
13
11
- name: Install cargo-binstall
14
12
uses: taiki-e/install-action@cargo-binstall
15
- name: Install cargo-deny
16
- run: cargo binstall cargo-deny@^0.14 --no-confirm --log-level debug
+ run: cargo binstall cargo-deny@^0.16 --no-confirm --log-level debug
17
- name: cargo-deny
18
- run: |
19
- if ${{ !!github.event.release }}; then
20
- cargo deny --all-features check
21
- else
22
- cargo deny --all-features check -W denied
23
- fi
+ run: cargo deny --all-features check
0 commit comments