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 55e7f61 commit 6f6acc6Copy full SHA for 6f6acc6
.github/workflows/unit-tests.yaml
@@ -45,12 +45,17 @@ jobs:
45
brew install coreutils
46
brew install llvm@16
47
48
- - name: "Run unit tests"
+ - if: "matrix.os == 'macos-14'"
49
+ name: "Run unit tests"
50
env:
- CC: >-
51
- ${{ if eq(matrix.os, "macos-14") }} ? "/opt/homebrew/opt/llvm@16/bin/clang" : ""
52
- CXX: >-
53
- ${{ if eq(matrix.os, "macos-14") }} ? "/opt/homebrew/opt/llvm@16/bin/clang++" : ""
+ CC: "/opt/homebrew/opt/llvm@16/bin/clang"
+ CXX: "/opt/homebrew/opt/llvm@16/bin/clang++"
+ run: |-
54
+ task clean
55
+ task test-all
56
+
57
+ - if: "false == (matrix.os == 'macos-14')"
58
59
run: |-
60
task clean
61
task test-all
0 commit comments