forked from mod-playerbots/mod-playerbots
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (28 loc) · 895 Bytes
/
code_style.yml
File metadata and controls
34 lines (28 loc) · 895 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
34
name: Codestyle
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
concurrency:
group: "codestyle-${{ github.event.pull_request.number }}"
cancel-in-progress: true
jobs:
lint:
name: "clang-format-always-success"
runs-on: ubuntu-latest
steps:
- name: Checkout Playerbot Module
uses: actions/checkout@v4
- name: Install clang-format
run: sudo apt-get install clang-format -y
- name: Run clang-format
run: |
# Find all C/C++ source files
FILES=$(find . -name "*.h" -o -name "*.cpp" -o -name "*.c" -o -name "*.hpp")
# Run clang-format in dry-run mode to check for formatting issues
clang-format -i $FILES
# Check if there are any formatting changes
git diff --exit-code
shell: bash
continue-on-error: true