-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (40 loc) · 1.08 KB
/
clang_check.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
name: clang-format Check
on:
pull_request:
branches: ["development"]
push:
branches: ["development"]
workflow_dispatch:
concurrency:
group: "clang-check"
cancel-in-progress: false
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
path:
- check: "examples"
exclude: ""
- check: "src"
exclude: "ArucoSamplesUtility.hpp"
- check: "tests"
exclude: ""
- check: "tools"
exclude: ""
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Fix Dubious Ownership
run: git config --global --add safe.directory /opt/Autonomy_Software
- name: Run clang-format style check
uses: jidicula/[email protected]
with:
clang-format-version: "16"
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}
fallback-style: "Microsoft"