Skip to content
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,23 @@ jobs:

- name: Run tests with coverage
run: cargo llvm-cov --all-features

security_audit:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2

- name: Install cargo-audit
run: cargo install cargo-audit

- name: Run cargo-audit
run: cargo audit

doc:
name: Generate Documentation
Expand Down
Loading