We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1896852 commit 7365dd7Copy full SHA for 7365dd7
1 file changed
.github/workflows/audit.yml
@@ -0,0 +1,17 @@
1
+name: Cargo Audit
2
+on:
3
+ push:
4
+ pull_request:
5
+ workflow_dispatch:
6
+jobs:
7
+ audit:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout repository
11
+ uses: actions/checkout@v4
12
+ - name: Set up Rust
13
+ uses: actions-rust-lang/setup-rust-toolchain@v1
14
+ - name: Install cargo-audit
15
+ run: cargo install cargo-audit
16
+ - name: Run cargo audit
17
+ run: cargo audit
0 commit comments