diff --git a/.gitea/workflows/smoke-test.yaml b/.gitea/workflows/smoke-test.yaml new file mode 100644 index 0000000..bd335a7 --- /dev/null +++ b/.gitea/workflows/smoke-test.yaml @@ -0,0 +1,21 @@ +# Smoke test: confirms Gitea Act Runner is online and accepting jobs. +# Run manually via workflow_dispatch after runner is registered (#77). +# Closes leeworks-agents/api-company#96 + +name: Runner Smoke Test + +on: + workflow_dispatch: + +jobs: + smoke: + name: Smoke Test + runs-on: ubuntu-latest + steps: + - name: Confirm runner is online + run: | + echo "Runner is online!" + echo "Job ID: $GITHUB_JOB" + echo "Runner OS: $(uname -a)" + echo "Date: $(date -u)" + echo "Smoke test PASSED"