cron-demo/.gitea/workflows/on-push.yml
giteaadmin 85f2b4fc20
Some checks failed
on-push-smoke / smoke (push) Failing after 2m45s
feat: add continuous cron workflow and sample task
Add a schedule workflow every 2 minutes with chained jobs,
plus a push smoke workflow to verify the runner immediately.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-30 13:48:09 +00:00

18 lines
319 B
YAML

name: on-push-smoke
on:
push:
branches: [main]
workflow_dispatch:
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: run once
run: |
python3 app/task.py
echo "push smoke ok at $(date -u +%Y-%m-%dT%H:%M:%SZ)"