Skip to content

Initial commit

Initial commit #3

Workflow file for this run

name: Pull Request Audit
on:
push:
paths:
- '**/Cargo.lock'
- '**/Cargo.toml'
pull_request:
paths:
- '**/Cargo.lock'
- '**/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@e2f4ede4a4e60ea15ff31bc0647485d80c66cfba # v2.0.4
with:
log-level: warn
command: check -- all
arguments: ''