about summary refs log tree commit diff
path: root/.github/workflows/code-format.yml
blob: 088793e7e6b477e2a5b329c1e1b3f68abd10e2cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Formatting

on:
  push:
    branches:
      - stable
      - dev
  pull_request:
    branches:
      - dev # No need for stable-pull-request, as that equals dev-push

jobs:
  code-format-check:
    name: Check code format
    runs-on: ubuntu-22.04
    container:
      image: docker.io/aflplusplus/aflplusplus:dev
      env:
        LLVM_VERSION: 14 # Remove _after_ this branch's image is built and pushed. The new image will have this var in ENV.
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Format
        run: |
          git config --global --add safe.directory /__w/AFLplusplus/AFLplusplus
          apt-get update
          apt-get install -y clang-format-${LLVM_VERSION}
          make code-format
      - name: Check if code needed formatting
        run: |
          git --no-pager -c color.ui=always diff HEAD
          if ! git diff HEAD --quiet; then
            echo "[!] Please run 'make code-format' and push its changes."
            exit 1
          fi