Merge pull request #2603 from cgwalters/use-cargo-deny
ci: use cargo-deny
This commit is contained in:
commit
c141cdea09
|
|
@ -66,3 +66,11 @@ jobs:
|
||||||
run: cargo fmt -p ostree -- --check -l
|
run: cargo fmt -p ostree -- --check -l
|
||||||
- name: cargo clippy (warnings)
|
- name: cargo clippy (warnings)
|
||||||
run: cargo clippy -p ostree --features=${{ env['CARGO_PROJECT_FEATURES'] }} -- -D warnings
|
run: cargo clippy -p ostree --features=${{ env['CARGO_PROJECT_FEATURES'] }} -- -D warnings
|
||||||
|
cargo-deny:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: EmbarkStudios/cargo-deny-action@v1
|
||||||
|
with:
|
||||||
|
log-level: warn
|
||||||
|
command: check bans sources licenses
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue