Skip to content

Commit 0c1ba2e

Browse files
authored
Fix syntax for accessing matrix variable in action.yml
1 parent 65e8f15 commit 0c1ba2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/Build_and_Test_cppyy/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ runs:
106106
107107
set -o pipefail
108108
os="${{ matrix.os }}"
109-
if [[ "${os}" != "macos"* && "${matrix.Valgrind}" == "On" ]]; then
109+
if [[ "${os}" != "macos"* && "${{ matrix.Valgrind }}" == "On" ]]; then
110110
echo "Running valgrind on passing tests"
111111
CLANG_VERSION="${{ matrix.clang-runtime }}"
112112

0 commit comments

Comments
 (0)