ci: security (#133)

* ci: add security audit job to workflow
This commit is contained in:
z9rtm 2025-04-15 10:10:04 +09:00 committed by GitHub
parent 04a0a2cefb
commit 9d6f9a2e0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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