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 549e1cf commit 22d3089Copy full SHA for 22d3089
.github/workflows/unit-tests.yaml
@@ -45,13 +45,14 @@ jobs:
45
brew install coreutils
46
brew install llvm@16
47
48
- - if: "'macos-14' == matrix.os"
49
- name: "Run unit tests"
50
- env:
51
- CC: "/opt/homebrew/opt/llvm@16/bin/clang"
52
- CXX: "/opt/homebrew/opt/llvm@16/bin/clang++"
53
- run: "task test-all"
54
-
55
- - if: "false == ('macos-14' == matrix.os)"
56
+ - name: "Run unit tests"
+ env: >-
+ ${{
+ 'macos-14' == matrix.os
+ && fromJson('{
+ "CC": "/opt/homebrew/opt/llvm@16/bin/clang",
+ "CXX": "/opt/homebrew/opt/llvm@16/bin/clang++"
+ }')
+ || fromJson('{}')
57
+ }}
58
run: "task test-all"
0 commit comments