Skip to content

Commit 1ab92d5

Browse files
committed
fix: skip 12.0.1
1 parent f9c71c8 commit 1ab92d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
fi
149149
150150
- name: Install and check clang-format wheels
151-
if: ${{ fromJSON(matrix.version) >= 10 }} # Version 9 failed on MacOS and Windows
151+
if: ${{ matrix.version != '12.0.1' && fromJSON(matrix.version) >= 10 }} # Skip 12.0.1
152152
shell: bash
153153
run: |
154154
set -e
@@ -170,7 +170,7 @@ jobs:
170170
echo "✅ clang-format Versions are correct."
171171
172172
- name: Install and check clang-tidy wheels
173-
if: ${{ fromJSON(matrix.version) >= 13 }} # Only versions 13 and above have wheels
173+
if: ${{ matrix.version != '12.0.1' && fromJSON(matrix.version) >= 13 }}
174174
shell: bash
175175
run: |
176176
set -e

0 commit comments

Comments
 (0)