From f5e40b53467d363ddeaf55c8909235b5326e7799 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 13:16:00 -0700 Subject: [PATCH] Add .gitea/workflows/ci-test.yml --- .gitea/workflows/ci-test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitea/workflows/ci-test.yml diff --git a/.gitea/workflows/ci-test.yml b/.gitea/workflows/ci-test.yml new file mode 100644 index 0000000..c267dbe --- /dev/null +++ b/.gitea/workflows/ci-test.yml @@ -0,0 +1,28 @@ +name: CI-test (Gitea Runner) + +on: + push: + branches: [ "**" ] + pull_request: + branches: [ "**" ] + +jobs: + hello-world: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - name: Show runner info + run: | + echo "Hostname: $(hostname)" + echo "OS: $(uname -a)" + echo "User: $(whoami)" + echo "Executor: $RUNNER_EXECUTOR" + - name: Simple shell test + run: | + echo "Running a tiny Bash test..." + if [[ "$(date +%u)" -gt 0 ]]; then + echo "✅ Date command works" + else + echo "❌ Unexpected date output" + exit 1 + fi \ No newline at end of file