Skip to content

Update Rust to v1.97.1 #111

Update Rust to v1.97.1

Update Rust to v1.97.1 #111

Workflow file for this run

name: formatting
on:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.96.1
components: rustfmt
- name: cargo fmt
run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.96.1
components: clippy
- run: cargo clippy -- --deny warnings