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