2021-05-10 18:18:44 +00:00
|
|
|
name: PR Lint Format
|
2020-12-10 17:01:51 +00:00
|
|
|
|
|
|
|
on:
|
2021-05-10 18:18:44 +00:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'drivers/**'
|
|
|
|
- 'lib/arm_atsam/**'
|
|
|
|
- 'lib/lib8tion/**'
|
|
|
|
- 'lib/python/**'
|
|
|
|
- 'platforms/**'
|
|
|
|
- 'quantum/**'
|
|
|
|
- 'tests/**'
|
|
|
|
- 'tmk_core/**'
|
2020-12-10 17:01:51 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-05-10 18:18:44 +00:00
|
|
|
lint:
|
2020-12-10 17:01:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2021-05-10 18:18:44 +00:00
|
|
|
container: qmkfm/base_container
|
2020-12-10 17:01:51 +00:00
|
|
|
|
|
|
|
steps:
|
2021-02-14 19:51:07 +00:00
|
|
|
- uses: rlespinasse/github-slug-action@v3.x
|
|
|
|
|
2020-12-10 17:01:51 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-12-16 23:00:02 +00:00
|
|
|
with:
|
2021-05-10 18:18:44 +00:00
|
|
|
fetch-depth: 0
|
2020-12-10 17:01:51 +00:00
|
|
|
|
2021-05-10 18:18:44 +00:00
|
|
|
- uses: trilom/file-changes-action@v1.2.4
|
|
|
|
id: file_changes
|
|
|
|
with:
|
|
|
|
output: ' '
|
|
|
|
fileOutput: ' '
|
2020-12-10 17:01:51 +00:00
|
|
|
|
2021-07-23 20:41:33 +00:00
|
|
|
- name: Run qmk format-c and qmk format-python
|
2021-05-10 18:18:44 +00:00
|
|
|
shell: 'bash {0}'
|
2021-02-06 12:55:50 +00:00
|
|
|
run: |
|
2021-07-23 20:41:33 +00:00
|
|
|
qmk format-c --core-only -n $(< ~/files.txt)
|
|
|
|
format_c_exit=$?
|
|
|
|
qmk format-python -n
|
|
|
|
format_python_exit=$?
|
2021-02-06 12:55:50 +00:00
|
|
|
|
2021-07-23 20:41:33 +00:00
|
|
|
exit $((format_c_exit + format_python_exit))
|