Skip to content

chore: Update deps (#6) #50

chore: Update deps (#6)

chore: Update deps (#6) #50

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
fmt-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: rustfmt
run: cargo fmt --all -- --check
- name: Run Clippy
run: cargo clippy --all-targets --all-features