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 f9c71c8 commit 1ab92d5Copy full SHA for 1ab92d5
.github/workflows/test.yml
@@ -148,7 +148,7 @@ jobs:
148
fi
149
150
- name: Install and check clang-format wheels
151
- if: ${{ fromJSON(matrix.version) >= 10 }} # Version 9 failed on MacOS and Windows
+ if: ${{ matrix.version != '12.0.1' && fromJSON(matrix.version) >= 10 }} # Skip 12.0.1
152
shell: bash
153
run: |
154
set -e
@@ -170,7 +170,7 @@ jobs:
170
echo "✅ clang-format Versions are correct."
171
172
- name: Install and check clang-tidy wheels
173
- if: ${{ fromJSON(matrix.version) >= 13 }} # Only versions 13 and above have wheels
+ if: ${{ matrix.version != '12.0.1' && fromJSON(matrix.version) >= 13 }}
174
175
176
0 commit comments