xref: /StarryEngine/.github/workflows/fmt-check.yml (revision 49182ea7bc0263215864dd04cd265e345a4af8f5)
1name: fmt-check
2
3on:
4  workflow_dispatch:
5  push:
6    branches: [ "master" ]
7  pull_request:
8    branches: [ "master" ]
9
10env:
11  CARGO_TERM_COLOR: always
12
13jobs:
14  fmt-check:
15    runs-on: ubuntu-latest
16
17    steps:
18    - uses: actions/checkout@v3
19    - name: fmt check
20      run: make fmt-check
21