summaryrefslogtreecommitdiffstats
path: root/.github/workflows/format.yml
blob: 92caff79815341894f3e358f10d20292ae4b8686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
name: Format
on: [push, pull_request]
jobs:
  all:
    runs-on: ubuntu-latest
    steps:
    - uses: hecrj/setup-rust-action@v1
      with:
        components: rustfmt
    - uses: actions/checkout@master
    - name: Check format
      run: cargo fmt --all -- --check