Skip to content

Commit 8b165a0

Browse files
committed
Debug GITHUB_ACTIONS
1 parent 97dd833 commit 8b165a0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/test-helper.bash

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,11 @@ _skip_manual_test() {
167167
}
168168

169169
_skip_if_github_action() {
170-
[[ "${GITHUB_ACTIONS}" != "true" ]] || skip "$@"
170+
echo "Debug GITHUB_ACTIONS: ${GITHUB_ACTIONS}"
171+
if [[ "${GITHUB_ACTIONS}" != "true" ]]; then
172+
echo "NOT SKIPPING"
173+
else
174+
echo "SKIPPING"
175+
skip "$@"
176+
fi
171177
}

0 commit comments

Comments
 (0)