2f249a9e18
Validate Flux manifests / kustomize-build (pull_request) Failing after 21s
Adds .gitea/workflows/smoke-test.yaml as a manual workflow_dispatch trigger that runs four echo commands. When the Act Runner comes online (#77) the operator can fire this from the Gitea Actions UI to confirm runner registration and job dispatch work before any real tooling is needed. Closes leeworks-agents/api-company#96
22 lines
542 B
YAML
22 lines
542 B
YAML
# 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"
|