gitlab-sim/testdata/invalid.yml
2026-06-05 01:29:07 +02:00

24 lines
279 B
YAML

stages:
- build
- test
build-job:
stage: build
script:
- echo "ok"
bad-stage-job:
stage: nonexistent
script:
- echo "this stage does not exist"
no-script-job:
stage: test
deprecated-job:
stage: test
script:
- echo "old style"
only:
- main