Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
chore(ci): add cargo deny workflow (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Sep 13, 2023
1 parent 2a546e5 commit acb8759
Show file tree
Hide file tree
Showing 3 changed files with 245 additions and 146 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deny.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: deny

on:
push:
branches: [master]
paths: [Cargo.lock]
pull_request:
branches: [master]
paths: [Cargo.lock]
merge_group:

env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always

concurrency: deny-${{ github.head_ref || github.run_id }}

jobs:
deny:
name: deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check all
Loading

0 comments on commit acb8759

Please sign in to comment.