We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a0a2c commit 9d6f9a2Copy full SHA for 9d6f9a2
.github/workflows/ci.yml
@@ -132,6 +132,23 @@ jobs:
132
133
- name: Run tests with coverage
134
run: cargo llvm-cov --all-features
135
+
136
+ security_audit:
137
+ name: Security Audit
138
+ runs-on: ubuntu-latest
139
+ steps:
140
+ - uses: actions/checkout@v4
141
142
+ - name: Install Rust
143
+ uses: dtolnay/rust-toolchain@stable
144
145
+ - uses: Swatinem/rust-cache@v2
146
147
+ - name: Install cargo-audit
148
+ run: cargo install cargo-audit
149
150
+ - name: Run cargo-audit
151
+ run: cargo audit
152
153
doc:
154
name: Generate Documentation
0 commit comments