name: Formatters
on: [pull_request]

jobs:
  fmt:
    name: Run fmt
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3
      - name: Install deps
        run: |
          apt update
          apt install -y clang-format
      - name: Run fmt
        run: |
          make fmt
          git diff --exit-code --quiet