gitearunner test
Test Runner / hello (push) Successful in 8s

This commit is contained in:
2026-08-24 17:49:04 +08:00
parent eef3ef5e5b
commit 1313f20bdf
+1 -1
View File
@@ -8,7 +8,7 @@ jobs: # 工单里有几道工序
hello: # 工序1,名字叫 hello hello: # 工序1,名字叫 hello
runs-on: ubuntu-latest # 找 label 是 ubuntu-latest 的 runner runs-on: ubuntu-latest # 找 label 是 ubuntu-latest 的 runner
steps: # 这道工序分步做 steps: # 这道工序分步做
- uses: actions/checkout@v4 # 步1:把仓库代码拉进容器 - uses: https://gitea.com/actions/checkout@v4 # 步1:把仓库代码拉进容器
- name: Check node # 步2:起个名字 - name: Check node # 步2:起个名字
run: | # 步2实际执行的 shell 命令 run: | # 步2实际执行的 shell 命令
echo "Gitea Actions OK" echo "Gitea Actions OK"