Skip to content

Commit 6f6acc6

Browse files
committed
Fix bug
1 parent 55e7f61 commit 6f6acc6

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/unit-tests.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,17 @@ jobs:
4545
brew install coreutils
4646
brew install llvm@16
4747
48-
- name: "Run unit tests"
48+
- if: "matrix.os == 'macos-14'"
49+
name: "Run unit tests"
4950
env:
50-
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++" : ""
51+
CC: "/opt/homebrew/opt/llvm@16/bin/clang"
52+
CXX: "/opt/homebrew/opt/llvm@16/bin/clang++"
53+
run: |-
54+
task clean
55+
task test-all
56+
57+
- if: "false == (matrix.os == 'macos-14')"
58+
name: "Run unit tests"
5459
run: |-
5560
task clean
5661
task test-all

0 commit comments

Comments
 (0)