diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/check-formatting.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/check-formatting.yml b/.github/workflows/check-formatting.yml new file mode 100644 index 000000000..c923d1855 --- /dev/null +++ b/.github/workflows/check-formatting.yml @@ -0,0 +1,16 @@ +name: Check Formatting (comment /format to auto-fix) + +on: + push: + branches: [master] + pull_request: + branches: [master] +jobs: + check-formatting: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup + uses: ./.github/actions/format-setup + - run: ./extras/formatting.sh --check-only + |
