We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f85f28 commit 9ba2b54Copy full SHA for 9ba2b54
.github/workflows/pr-linter.yml
@@ -42,6 +42,17 @@ jobs:
42
- name: Check commit messages
43
run: python3 ./.github/automation/commit-msg-check.py "${{ github.event.pull_request.head.sha }}" "${{ github.event.pull_request.base.sha }}"
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.base.sha }}")
55
+
56
pr-clang-format:
57
name: Clang-Format
58
runs-on: ubuntu-22.04
@@ -95,4 +106,4 @@ jobs:
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"
0 commit comments