-
Notifications
You must be signed in to change notification settings - Fork 12
49 lines (41 loc) · 1.22 KB
/
cpp-linter.yml
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: cpp-linter
on:
pull_request:
types: [opened, reopened, synchronize]
paths: ['**.c', '**.h', '**.cpp', '**.hpp', '.clang-format']
push:
paths: ['**.c', '**.h', '**.cpp', '**.hpp', '.clang-format']
workflow_dispatch: # Manually invoked by user.
jobs:
get-vars:
uses: ./.github/workflows/get-vars.yml
cpp-linter:
name: C/C++ Linter
runs-on: ubuntu-latest
needs: get-vars
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: ./.github/actions/build-compilationdb
with:
board: OpenShock-Core-V2 # Doesn't matter, just need the compilation database
skip-checkout: true
- uses: cpp-linter/cpp-linter-action@v2
id: linter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: file
version: 18
lines-changed-only: diff
thread-comments: true
file-annotations: false
- name: Fail fast?!
if: steps.linter.outputs.checks-failed > 0
run: |
echo "Some files failed the linting checks!"
# for actual deployment
# run: exit 1