From 08433a2531bd28791bd8ffd5694b74686997a32b Mon Sep 17 00:00:00 2001 From: moilanik Date: Sat, 13 Jun 2026 07:55:36 +0300 Subject: [PATCH] curl bats konttiin --- .gitea/workflows/build-feature.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build-feature.yml b/.gitea/workflows/build-feature.yml index b5505b0..4a6ce87 100644 --- a/.gitea/workflows/build-feature.yml +++ b/.gitea/workflows/build-feature.yml @@ -36,11 +36,8 @@ jobs: mkdir -p "reports/${GITHUB_SHA:0:8}/bats" set +e docker run --rm -v bats-workspace:/data \ - --entrypoint sh ${{ inputs.bats-image }} \ - -c 'apk add -q lsof python3 jq && \ - echo "=== Volume contents ===" && \ - ls -la /data/scripts/ && \ - echo "=== Run bats ===" && \ + --entrypoint bash ${{ inputs.bats-image }} \ + -c 'apk add -q lsof python3 jq curl && \ cd /data && bats tests/ ' \ > "reports/${GITHUB_SHA:0:8}/bats/results.txt" 2>&1 BATS_EXIT=$?