We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d086d32 commit b076861Copy full SHA for b076861
1 file changed
.github/workflows/format.yml
@@ -11,14 +11,16 @@ jobs:
11
runs-on: ubuntu-22.04
12
13
steps:
14
- - run: clang-format --version
+ - run: sudo apt install clang-format-15
15
+
16
+ - run: clang-format-15 --version
17
18
- name: checkout
19
uses: actions/checkout@v2
20
21
- name: apply clang-format
22
run: |
23
FILES=$( find . -type f \( -iname \*.h -o -iname \*.cpp \) )
- clang-format-12 --style=file -i $FILES
24
+ clang-format-15 --style=file -i $FILES
25
26
- run: git diff --exit-code --name-only
0 commit comments