12345678910111213141516171819 |
- on:
- push:
- branches: [ staging, trying, master ]
- pull_request:
- merge_group:
- name: Code formatting check
- jobs:
- fmt:
- name: 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
|