diff --git a/.github/workflows/all_test3.yaml b/.github/workflows/all_test3.yaml index 17a5d80..ac837a7 100644 --- a/.github/workflows/all_test3.yaml +++ b/.github/workflows/all_test3.yaml @@ -116,9 +116,6 @@ jobs: -e GITEASSH="$(echo "${{ secrets.GITEASSH }}" | tr -d '\n')" \ cr.yandex/crp8vh46gd976oq8ipla/${{ github.event.repository.name }}:${{ env.effective_tag }} \ bash -c ' - echo "📁 Listing contents of /server:" - ls -lah /server || echo "❌ /server not found" - mkdir -p ~/.ssh echo "$GITEASSH" | base64 -d > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa @@ -126,16 +123,10 @@ jobs: eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_rsa - echo "📁 Listing contents of /server SECOND:" - ls -lah /server || echo "❌ /server not found" - echo "🔧 Copying test config" cp config-tests-example.yaml config.yaml cp config-tests-example.yaml config-tests.yaml - echo "🔧 Listing contents of test config" - ls -lah || echo "❌ /server not found" - echo "🚀 Creating virtual environment..." python3 -m venv .venv && \ source .venv/bin/activate && \