Skip to content

Commit

Permalink
Add cargo deny to check dependencies for license disagreements
Browse files Browse the repository at this point in the history
TLDR: deny copyleft, deny unknown, allow only MIT, Apache-2.0 and BSD-3-Clause
  • Loading branch information
kellerkindt committed Mar 19, 2021
1 parent f24b8e7 commit b155557
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,11 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './lcov.info'
path-to-lcov: './lcov.info'

cargo-deny:
name: Check license and vulnerabilities
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: EmbarkStudios/cargo-deny-action@v1

0 comments on commit b155557

Please sign in to comment.