POC: smoke test without workflow_call + disable broken ci.yml
This commit is contained in:
@@ -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"
|
||||||
Reference in New Issue
Block a user