Files
gitea-ci-library/.gitea/workflows/ci-smoke-test.yml
T
moilanik a4122098c5
Smoke test / one (push) Failing after 1s
Smoke test / two (push) Has been skipped
POC: smoke test without workflow_call + disable broken ci.yml
2026-06-08 17:32:34 +03:00

17 lines
317 B
YAML

# ci-smoke-test.yml — absolute minimaalinen testi: toimiiko Gitea Actions lainkaan
name: Smoke test
on:
push:
branches: ["**"]
jobs:
one:
runs-on: ubuntu-latest
steps:
- run: echo "smoke test one"
two:
needs: one
runs-on: ubuntu-latest
steps:
- run: echo "smoke test two"