This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
Merge pull request #126 from kevin-vigor/master #146
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
merge_group: | |
name: Code formatting check | |
jobs: | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- name: Run Rustfmt | |
run: cargo fmt --all -- --check --verbose |