Skip to content

chore: Add rust audit GitHub action (#430) #5

chore: Add rust audit GitHub action (#430)

chore: Add rust audit GitHub action (#430) #5

Workflow file for this run

name: Audit Rust Dependencies
on:
push:
branches:
- main
pull_request:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run cargo audit
run: cargo audit