-
Notifications
You must be signed in to change notification settings - Fork 37
70 lines (68 loc) · 2.15 KB
/
check_style.yml
File metadata and controls
70 lines (68 loc) · 2.15 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Verify code formatting
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
verify-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Install astyle
run: sudo apt-get update && sudo apt-get install -y astyle
- name: Run astyle check
run: |
# Run astyle but don't overwrite
astyle --version
if astyle --style=allman \
--indent=spaces=4 \
--indent-col1-comments \
--pad-oper \
--pad-comma \
--pad-header \
--unpad-paren \
--align-pointer=name \
--align-reference=name \
--break-closing-braces \
--add-braces \
--attach-return-type \
--attach-return-type-decl \
--convert-tabs \
--indent-cases \
--indent-namespaces \
--indent-preproc-define \
--recursive \
--dry-run \
"*.cpp" "*.h" "*.ino" | grep -q "Formatted"; then
echo "::error::Indentation check failed"
astyle --style=allman \
--indent=spaces=4 \
--indent-col1-comments \
--pad-oper \
--pad-comma \
--pad-header \
--unpad-paren \
--align-pointer=name \
--align-reference=name \
--break-closing-braces \
--add-braces \
--attach-return-type \
--attach-return-type-decl \
--convert-tabs \
--indent-cases \
--indent-namespaces \
--indent-preproc-define \
--recursive \
--dry-run \
--formatted \
"*.cpp" "*.h" "*.ino"
exit 1
else
echo "Indentation check passed"
fi