From 72af31e0c3c88c36a6a4191a05774fee86e4f5aa Mon Sep 17 00:00:00 2001 From: zhaishis Date: Sun, 3 May 2026 16:41:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20gitea/.workflow/run.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gitea/.workflow/run.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 gitea/.workflow/run.yml diff --git a/gitea/.workflow/run.yml b/gitea/.workflow/run.yml new file mode 100644 index 0000000..c292ef8 --- /dev/null +++ b/gitea/.workflow/run.yml @@ -0,0 +1,17 @@ +name: 编译测试 +on: push + +jobs: + build: + runs-on: linux-x64 + steps: + - name: 拉取代码 + uses: actions/checkout@v4 + + - name: 打印系统信息 + run: uname -a + + - name: 简单编译测试(Go示例,换C#/Rust都行) + run: | + echo "Gitea Runner 运行正常" + date