Skip to content

Patch workflow error #3

Patch workflow error

Patch workflow error #3

Workflow file for this run

name: Rust Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets --all-features -- -D warnings
- name: Install cargo-deny
run: cargo install cargo-deny
- run: cargo deny check
- run: cargo install cargo-audit
- run: cargo audit