Skip to content

Update to version v0.21.0 #223

Update to version v0.21.0

Update to version v0.21.0 #223

Workflow file for this run

# When pushed to master, run `cargo +nightly fmt --all` and open a PR.
name: rustfmt
on: [push, pull_request]
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain with rustfmt available
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- run: rustfmt --edition 2021 **/*.rs --check