Files
gitea-ci-library/.gitea/workflows/ci-engine-test.yml
T
moilanik d76fc9acc2
CI — gitea-ci-library / feature (push) Failing after 1m18s
CI — gitea-ci-library / master (push) Has been skipped
POC: test reusable workflow job visibility in Gitea Actions
2026-06-08 17:22:26 +03:00

25 lines
551 B
YAML

# ci-engine-test.yml — POC: testaa kuinka Gitea raportoi reusable workflow'n jobit
#
# Tämä on väliaikainen testimoottori. Poistetaan POC:n jälkeen.
# Tarkistetaan näkyykö commitissa:
# - ci-engine-test.yml / hello-one
# - ci-engine-test.yml / hello-two
# vai pelkkä yksi check kutsuvan jobin nimellä.
name: CI Engine Test
on:
workflow_call:
jobs:
hello-one:
runs-on: ubuntu-latest
steps:
- run: echo "hello one"
hello-two:
needs: hello-one
runs-on: ubuntu-latest
steps:
- run: echo "hello two"