From 02ca7dcd2a993ceb93ee23dd1fc1cd6474e11762 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 30 May 2026 10:46:22 +0000 Subject: [PATCH] Atualizar .github/workflows/teste-shell.yml --- .github/workflows/teste-shell.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/teste-shell.yml b/.github/workflows/teste-shell.yml index 079a6ff..3887cbd 100644 --- a/.github/workflows/teste-shell.yml +++ b/.github/workflows/teste-shell.yml @@ -37,6 +37,14 @@ jobs: apt-get update -qq && apt-get install -y -qq python3 curl fi python3 --version + - name: 📦 Instalar python3 se necessário + run: | + # Alpine usa apk, Ubuntu/Debian usa apt + if command -v apk &>/dev/null; then + apk add --no-cache curl + elif command -v apt-get &>/dev/null; then + apt-get update -qq && apt-get install -y -qq curl + fi - name: 🌐 Testar conectividade externa run: | echo "=== Ping externo ==="