From 0f0436fd4a7375031cec9a25056f2d3f69b9b16e Mon Sep 17 00:00:00 2001 From: Houzhong Xu Date: Thu, 9 Oct 2025 12:49:44 +0000 Subject: [PATCH] =?UTF-8?q?ADD:=20=E7=AE=80=E5=8D=95=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=20-=20=E9=AA=8C=E8=AF=81=20GitOps?= =?UTF-8?q?=20=E5=9F=BA=E7=A1=80=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/test-simple.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/test-simple.yml diff --git a/.gitea/workflows/test-simple.yml b/.gitea/workflows/test-simple.yml new file mode 100644 index 0000000..5cbcfe4 --- /dev/null +++ b/.gitea/workflows/test-simple.yml @@ -0,0 +1,25 @@ +name: Simple Test + +on: + push: + branches: [ main ] + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Simple test + run: | + echo "GitOps 测试成功!" + echo "当前时间: $(date)" + echo "当前目录: $(pwd)" + ls -la + + - name: Check Nomad status + run: | + echo "检查 Nomad 集群状态..." + echo "这是一个模拟检查,实际部署中会连接到 Nomad 集群" \ No newline at end of file