-
-
Notifications
You must be signed in to change notification settings - Fork 43
35 lines (31 loc) · 815 Bytes
/
Copy pathcode_format_check.yml
File metadata and controls
35 lines (31 loc) · 815 Bytes
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
name: Check coding style
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install astyle
run: |
tar xvjf tools/astyle-3.4.10.tar.bz2
cd astyle-3.4.10
cmake .
make
sudo make install
astyle -V
- name: Formatting code
run: bash code_format.sh
working-directory: tools
- name: Check Code
shell: bash
run: |
set -o pipefail
if ! (git diff --exit-code | tee /tmp/_diff.patch); then
echo "Please fix the code format before submitting the code, by running 'tools/code_format.sh'"
exit 1
fi