Atualizar .github/workflows/teste-shell.yml
Deploy via Script Externo / deploy (push) Failing after 5s
ShellCheck CI / shellcheck (push) Failing after 1s
Teste Shell Runner / shell-test (push) Successful in 19s

This commit is contained in:
2026-05-30 10:46:22 +00:00
parent 4563571bf2
commit 02ca7dcd2a
+8
View File
@@ -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 ==="