commit 4221a00fde3e7f1a8a463e14ffc701761ce49300 Author: gitea Date: Sun Sep 6 09:27:48 2026 +0700 Add .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"