2022-02-16 22:51:05 +00:00
|
|
|
name: clang-format-lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [master, nightly]
|
2022-04-23 16:35:39 +00:00
|
|
|
types: [opened, synchronize, reopened]
|
2022-02-16 22:51:05 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
2022-02-16 23:09:23 +00:00
|
|
|
name: Clang Format Lint
|
2022-02-16 22:51:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-02 12:36:17 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-02-16 22:51:05 +00:00
|
|
|
|
|
|
|
- name: Clang format lint
|
2022-06-03 12:35:18 +00:00
|
|
|
uses: DoozyX/clang-format-lint-action@v0.14
|
2022-02-16 22:51:05 +00:00
|
|
|
with:
|
|
|
|
source: './sunshine'
|
2022-02-24 19:58:24 +00:00
|
|
|
extensions: 'cpp,h,m,mm'
|
2022-02-16 22:51:05 +00:00
|
|
|
clangFormatVersion: 13
|
|
|
|
style: file
|
2022-04-18 18:53:28 +00:00
|
|
|
inplace: false
|
2022-02-16 22:58:06 +00:00
|
|
|
|
|
|
|
- name: Upload Artifacts
|
2022-04-18 18:53:28 +00:00
|
|
|
if: failure()
|
2022-04-11 14:37:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-02-16 22:58:06 +00:00
|
|
|
with:
|
2022-02-16 23:09:23 +00:00
|
|
|
name: sunshine
|
2022-02-16 22:58:06 +00:00
|
|
|
path: sunshine/
|