Sunshine/.github/workflows/clang.yml

32 lines
632 B
YAML
Raw Normal View History

2022-02-16 22:51:05 +00:00
name: clang-format-lint
on:
pull_request:
branches: [master, nightly]
types: [opened, synchronize, reopened]
2022-02-16 22:51:05 +00:00
jobs:
lint:
name: Clang Format Lint
2022-02-16 22:51:05 +00:00
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2022-02-16 22:51:05 +00:00
- name: Clang format lint
uses: DoozyX/clang-format-lint-action@v0.14
2022-02-16 22:51:05 +00:00
with:
source: './sunshine'
extensions: 'cpp,h,m,mm'
2022-02-16 22:51:05 +00:00
clangFormatVersion: 13
style: file
inplace: false
- name: Upload Artifacts
if: failure()
uses: actions/upload-artifact@v3
with:
name: sunshine
path: sunshine/