Add .gitea/workflows/ci-test.yml
Some checks failed
Test runner / hello (push) Waiting to run
CI-test (Gitea Runner) / hello-world (push) Has been cancelled

This commit is contained in:
Aaron Honeycutt 2025-12-10 13:16:00 -07:00
parent b8b6c8dba3
commit f5e40b5346

View file

@ -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