summaryrefslogtreecommitdiff
path: root/.github/workflows/format.yml
blob: 714c60bf0c6df07131148d9585887c3d92dc367a (plain)
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
36
37
name: Code formatting

on:
  pull_request:
    branches: [ develop ]
    paths:
      - '**.cpp'
      - '**.h'
      - '!src/libs/**'
      - '!src/FreeRTOS/**'

jobs:
  test-format:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 1000

      - name: Configure git
        run: |
          git fetch origin "$GITHUB_BASE_REF":"$GITHUB_BASE_REF" --depth=1000

      - name: Install clang-format
        run: |
          sudo apt-get update
          sudo apt-get -y install clang-format-12

      - name: Check formatting
        run: tests/test-format.sh

      - name: Upload patches
        uses: actions/upload-artifact@v3
        if: failure()
        with:
          name: Patches
          path: ./*.patch