POC: smoke test without workflow_call + disable broken ci.yml
Smoke test / one (push) Failing after 1s
Smoke test / two (push) Has been skipped

This commit is contained in:
moilanik
2026-06-08 17:32:34 +03:00
parent e7d77e38f7
commit a4122098c5
2 changed files with 16 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# 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"