Skip to content

Update README.md (#8) #11

Update README.md (#8)

Update README.md (#8) #11

Workflow file for this run

name: "Audit Dependencies"
on:
push:
paths:
- '.github/workflows/audit.yml'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/audit.toml'
schedule:
- cron: '0 0 */3 * *' # every 3 days
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/audit@v1
name: Audit Rust Dependencies