From 4221a00fde3e7f1a8a463e14ffc701761ce49300 Mon Sep 17 00:00:00 2001 From: gitea Date: Sun, 6 Sep 2026 09:27:48 +0700 Subject: [PATCH] Add .gitea/workflows/test.yaml --- .gitea/workflows/test.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..981668f --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,28 @@ +name: Test Runner + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: System info + run: | + echo "Runner: $RUNNER_NAME" + echo "OS:" + cat /etc/os-release + echo "Hostname:" + hostname + + - name: Test + run: | + echo "Gitea Actions is working!" + echo "Hello from rocky-runner"