Skip to content

Commit

Permalink
ci: add cargo-deny check
Browse files Browse the repository at this point in the history
  • Loading branch information
smrtrfszm authored and TwoDCube committed May 11, 2024
1 parent ceb1284 commit 7474fa3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,18 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test

cargo-deny:
name: cargo-deny check ${{ matrix.checks }}
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
steps:
- uses: actions/checkout@v4
- name: cargo-deny check ${{ matrix.checks }}
uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}

0 comments on commit 7474fa3

Please sign in to comment.