51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
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 $(< ~/files.txt)
|
|
qmk format-text $(< ~/files.txt)
|
|
|
|
- name: Fail when formatting required
|
|
run: |
|
|
git diff
|
|
for file in $(git diff --name-only); do
|
|
echo "File '${file}' Requires Formatting"
|
|
echo "::error file=${file}::Requires Formatting"
|
|
done
|
|
test -z "$(git diff --name-only)"
|