Skip to content

Commit 56a11e0

Browse files
committed
Add 'cargo audit' step to standard workflow
1 parent 743f811 commit 56a11e0

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/rust.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,14 @@ jobs:
1717
run: cargo build --verbose
1818
- name: Run tests
1919
run: cargo test --verbose
20+
21+
audit:
22+
23+
runs-on: ubuntu-latest
24+
25+
steps:
26+
- uses: actions/checkout@v2
27+
- name: Install Cargo Audit
28+
run: cargo install cargo-audit
29+
- name: Audit
30+
run: cargo audit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Rust](https://github.com/fastly/userfaultfd-rs/workflows/Rust/badge.svg)
1+
![Build](https://github.com/fastly/userfaultfd-rs/workflows/Rust/badge.svg)
22

33
# userfaultfd-rs
44
Rust bindings for Linux's userfaultfd functionality.

0 commit comments

Comments
 (0)