Add .gitea/workflows/test.yaml
Test Runner / test (push) Failing after 2m4s

This commit is contained in:
2026-09-06 09:27:48 +07:00
commit 4221a00fde
+28
View File
@@ -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"