Skip to content

github actions: Run cargo audit #199

github actions: Run cargo audit

github actions: Run cargo audit #199

Workflow file for this run

name: Rust Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy -- -D warnings