Skip to content

Commit 7421d24

Browse files
committed
fix: update if condition using fromJSON
1 parent a907e82 commit 7421d24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +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
151152
shell: bash
152153
run: |
153154
set -e
@@ -169,7 +170,7 @@ jobs:
169170
echo "✅ clang-format Versions are correct."
170171
171172
- name: Install and check clang-tidy wheels
172-
if: matrix.version >= 13 # Only versions 13 and above have wheels
173+
if: fromJSON(matrix.version) >= 13 # Only versions 13 and above have wheels
173174
shell: bash
174175
run: |
175176
set -e

0 commit comments

Comments
 (0)