Skip to content

Commit 7365dd7

Browse files
committed
feature: workflow for cargo audit
1 parent 1896852 commit 7365dd7

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/audit.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)