Skip to content

Bump actions/checkout from 5 to 6 #217

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #217

Workflow file for this run

name: Rustfmt
on: push
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
toolchain: nightly
args: --all -- --check