From 9ef7ce90295b3f83af55fb82c2da896c1b3a1d29 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Fri, 27 Mar 2026 18:33:12 +0100 Subject: [PATCH] fix: try fix empty outputs [skip ci] --- .github/actions/acc_test/action.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/actions/acc_test/action.yaml b/.github/actions/acc_test/action.yaml index 46565e96..cb492499 100644 --- a/.github/actions/acc_test/action.yaml +++ b/.github/actions/acc_test/action.yaml @@ -221,6 +221,16 @@ runs: echo "result=no result before run" >> "$GITHUB_OUTPUT" echo "Running acceptance tests for the terraform provider" + + if [[ -z "$testfile" ]]; then + test_file="./..." + fi + + if [[ -z "$testfile" ]]; then + echo "ERROR: No test file provided" + exit 1 + fi + set +e cd stackit || exit 1 TF_ACC=1 \