summaryrefslogtreecommitdiffstats
path: root/.github/workflows/format.yaml
blob: 9e165e0e8df6ae11afb3548ebbb0af26ccde89d2 (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
38
39
40
41
42
43
44
45
46
47
48
49
name: PR Lint Format

on:
  pull_request:
    paths:
    - 'drivers/**'
    - 'lib/arm_atsam/**'
    - 'lib/lib8tion/**'
    - 'lib/python/**'
    - 'platforms/**'
    - 'quantum/**'
    - 'tests/**'
    - 'tmk_core/**'

jobs:
  lint:
    runs-on: ubuntu-latest

    container: qmkfm/qmk_cli

    steps:
    - name: Install dependencies
      run: |
        apt-get update && apt-get install -y dos2unix

    - uses: actions/checkout@v2
      with:
        fetch-depth: 0

    - uses: trilom/file-changes-action@v1.2.4
      id: file_changes
      with:
        output: ' '
        fileOutput: ' '

    - name: Run qmk formatters
      shell: 'bash {0}'
      run: |
        qmk format-c --core-only $(< ~/files.txt)
        qmk format-python
        qmk format-text $(< ~/files.txt)
        git diff

    - name: Fail when formatting required
      run: |
        for file in $(git diff --name-only); do
          echo "::error file=${file}::::File Requires Formatting"
        done
        test -z "$(git diff --name-only)"