-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (55 loc) · 1.84 KB
/
clang-format.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# This is a basic workflow to help you get started with Actions
name: clang-format
# Controls when the workflow will run
on:
pull_request:
types: [opened, reopened, synchronize]
paths:
- '**/*.cpp' # 只针对 .cpp 文件
- '**/*.h' # 只针对 .h 文件
- '**/*.c' # 只针对 .c 文件
- '**/*.hpp' # 只针对 .hpp 文件
# reusable
workflow_call:
concurrency:
group: clang-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- name: Update and install clang-format
run: |
sudo apt-get update
sudo apt-get install -y clang-format
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files in the PR
id: files
run: |
git log
ls -atl
# Get a list of changed files in the PR
files=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} -- '*.cpp' '*.h' '*.c' '*.hpp')
echo "Modified files:"
echo "$files"
# Save changed files to a variable for later steps
echo "::set-output name=changed-files::$files"
- name: Run clang-format check
run: |
for file in ${{ steps.files.outputs.changed-files }}
do
if [ -f "$file" ]; then
if [ -f ".clang-format" ]; then
echo clang-format -n $file --Werror
clang-format -n $file --Werror
else
echo clang-format --style=WebKit -n $file --Werror
clang-format --style=WebKit -n $file --Werror
fi
fi
done
echo "All changed files passed clang-format check"