summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/testframework-rust-supply-chain.yml
blob: 9abe79ad6a2c70fca18244cf47c5fc9468e2cd3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
name: Rust - Supply chain (Test framework)
on:
  pull_request:
    paths:
      - .github/workflows/testframework-rust-supply-chain.yml
      - ./test/deny.toml
      - 'test/**/Cargo.toml'
      - 'test/**/Cargo.lock'
      - 'test/**/*.rs'
  workflow_dispatch:

permissions: {}

jobs:
  check-test-framework-supply-chain:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

      - 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