Skip to content

Rust Audit

Rust Audit #69

Workflow file for this run

name: Rust Audit
on:
workflow_dispatch: # Allow manual running to refresh/check cache
schedule:
- cron: '0 2 * * *'
pull_request:
paths:
- 'rust/**/Cargo.toml'
- '.github/workflows/rust-audit.yaml'
env:
SCCACHE_GHA_ENABLED: "true"
SSCACHE_CACHE_SIZE: "2G"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
- uses: mozilla-actions/[email protected]
- name: Install cargo audit
run: cargo install cargo-audit
- name: Audit
working-directory: ./rust
run: cargo audit