Skip to content

Commit

Permalink
Run cargo deny in test workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusPettersson98 committed Mar 13, 2024
1 parent b77c480 commit fa96d61
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/testframework-rust-supply-chain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Rust - Supply chain (Test framework)
on:
pull_request:
paths:
- .github/workflows/testframework-rust-supply-chain.yml
- deny.toml
- 'test/**/Cargo.toml'
- 'test/**/Cargo.lock'
- 'test/**/*.rs'
workflow_dispatch:
jobs:
check-test-framework-supply-chain:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Run cargo deny (test workspace)
uses: EmbarkStudios/cargo-deny-action@v1
with:
manifest-path: ./test/Cargo.toml
log-level: warn
rust-version: stable
command: check all

0 comments on commit fa96d61

Please sign in to comment.