Skip to content

Format Rust code using rustfmt #7

Format Rust code using rustfmt

Format Rust code using rustfmt #7

Workflow file for this run

name: Automated Code Formatting
on:
push:
branches:
- "*"
- "*/*"
- "**"
jobs:
format:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}