summaryrefslogtreecommitdiffstats
path: root/.github/workflows/check-formatting.yml
blob: 303e53e15992494003e5d2d6eaef4e0972048068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Check Formatting (comment /format to auto-fix)

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]
  merge_group:
    types: [checks_requested]
jobs:
  check-formatting:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: ./.github/actions/format-setup
      - run: ./extras/formatting.sh --check-only