Licenses checker #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Licenses checker" | |
on: | |
push: | |
paths: | |
- "**/Cargo.lock" | |
- "**/Cargo.toml" | |
- "deny.toml" | |
- ".github/workflows/cargo-deny.yml" # run when this file changes, so we know nothing is broken | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: EmbarkStudios/[email protected] | |
with: | |
# The command to run with cargo-deny | |
command: check licenses |