renet/.github/workflows/rustfmt.yaml

19 lines
363 B
YAML
Raw Normal View History

2021-06-29 02:13:06 +08:00
on:
push:
branches: [ staging, trying ]
2021-06-29 02:13:06 +08:00
pull_request:
name: Rustfmt check
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
2021-06-29 02:22:18 +08:00
profile: minimal
2021-06-29 02:13:06 +08:00
components: rustfmt
- name: Check fmt
run: cargo fmt -- --check