Skip to content

Commit

Permalink
add cargo-deny to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
drink7036290 committed Dec 7, 2024
1 parent e38c393 commit 5bc9d1c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr-cargo-deny.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pull Request Security Audit

on:
push:
paths:
- '**/Cargo.toml'
pull_request:
paths:
- '**/Cargo.toml'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

permissions:
contents: read

jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v2

0 comments on commit 5bc9d1c

Please sign in to comment.