chore: trigger CI pipeline #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Cargo Deny | |
| permissions: | |
| contents: read | |
| on: [push, pull_request] | |
| jobs: | |
| cargo-deny: | |
| name: cargo-deny | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 | |
| - name: Install cargo-deny | |
| run: cargo install --locked cargo-deny@0.18.9 | |
| - name: cargo-deny check | |
| run: | | |
| cargo deny --version | |
| cargo deny check | |
| # The RDP helper has its own lockfile outside of cargo workspace | |
| # The config path must be absolute, a relative --config resolves | |
| # against the helper's manifest dir, not the repo root | |
| cargo deny --manifest-path warpgate-rdp-helper/Cargo.toml check --config "$PWD/deny.toml" |