rustfmt.yaml 226 B

12345678910111213
  1. on:
  2. push:
  3. branches: [ staging, trying ]
  4. pull_request:
  5. name: Rustfmt check
  6. jobs:
  7. fmt:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: Check fmt
  12. run: cargo fmt -- --check