Skip to content

Commit c258588

Browse files
committed
Address code review
1 parent 5e40ed1 commit c258588

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

.github/workflows/unit-tests.yaml

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

0 commit comments

Comments
 (0)