File tree 2 files changed +466
-1
lines changed
2 files changed +466
-1
lines changed Original file line number Diff line number Diff line change 42
42
- name : Check commit messages
43
43
run : python3 ./.github/automation/commit-msg-check.py "${{ github.event.pull_request.head.sha }}" "${{ github.event.pull_request.base.sha }}"
44
44
45
+ pr-header-guards :
46
+ name : Header guards
47
+ runs-on : ubuntu-latest
48
+ steps :
49
+ - name : Checkout
50
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
51
+ with :
52
+ fetch-depth : 0
53
+ - name : Check header guards
54
+ run : ./scripts/fix_header_guards.py $(git diff --name-only "${{ github.event.pull_request.head.sha }}" "${{ github.event.pull_request.base.sha }}")
55
+
45
56
pr-clang-format :
46
57
name : Clang-Format
47
58
runs-on : ubuntu-22.04
95
106
needs : [ pr-commits, pr-clang-format, pr-format-tags ]
96
107
steps :
97
108
- name : Print success
98
- run : echo "Success"
109
+ run : echo "Success"
You can’t perform that action at this time.
0 commit comments