commit 014e4552115305fa4232b0d989bcaa0edd99b48c Author: fenix-gitea-admin Date: Mon Aug 4 21:24:49 2025 +0000 teste cicd diff --git a/.gitea/workflows/ci-test.yaml b/.gitea/workflows/ci-test.yaml new file mode 100644 index 0000000..ce9ac28 --- /dev/null +++ b/.gitea/workflows/ci-test.yaml @@ -0,0 +1,20 @@ +name: Teste Runner Bare-Metal + +on: + push: + branches: [ main ] + workflow_dispatch: + +jobs: + hello: + # roda em qualquer runner self-hosted registrado no Gitea + runs-on: [ self-hosted ] + steps: + - name: Checar versão do kubectl + run: | + echo "kubectl version client:" + kubectl version --client --short + + - name: Mostrar pods no cluster + run: | + kubectl get pods --all-namespaces \ No newline at end of file