Add .gitea/workflows/ci.yml
Some checks are pending
Test runner / hello (push) Waiting to run

This commit is contained in:
Aaron Honeycutt 2025-12-10 13:14:58 -07:00
parent 8ebd564518
commit b8b6c8dba3

15
.gitea/workflows/ci.yml Normal file
View file

@ -0,0 +1,15 @@
name: Test runner
on:
push:
branches: [ main ]
jobs:
hello:
runs-on: self-hosted # tells Gitea to use a selfhosted runner
steps:
- name: Print host info
run: |
echo "Runner hostname: $(hostname)"
echo "Executor: $RUNNER_EXECUTOR"
uname -a