rustfmt.yaml 382 B

12345678910111213141516171819
  1. on:
  2. push:
  3. branches: [ staging, trying, master ]
  4. pull_request:
  5. merge_group:
  6. name: Code formatting check
  7. jobs:
  8. fmt:
  9. name: Rustfmt
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v3
  13. - uses: dtolnay/rust-toolchain@stable
  14. with:
  15. components: rustfmt
  16. - name: Run Rustfmt
  17. run: cargo fmt --all -- --check --verbose