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 a907e82 commit f9c71c8Copy full SHA for f9c71c8
.github/workflows/test.yml
@@ -148,6 +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
152
shell: bash
153
run: |
154
set -e
@@ -169,7 +170,7 @@ jobs:
169
170
echo "✅ clang-format Versions are correct."
171
172
- name: Install and check clang-tidy wheels
- if: matrix.version >= 13 # Only versions 13 and above have wheels
173
+ if: ${{ fromJSON(matrix.version) >= 13 }} # Only versions 13 and above have wheels
174
175
176
0 commit comments