woodpecker/pipeline/frontend/yaml/linter/schema/.woodpecker/test-merge-map-and-sequence.yaml
qwerty287 f56f9cb1c0
Cleanups + prefer .yaml (#3069)
Co-authored-by: Robert Kaussow <xoxys@rknet.org>
2024-01-11 18:43:54 +01:00

19 lines
342 B
YAML

variables:
step_template: &base-step
image: golang:1.19
commands: &base-cmds
- go version
- whoami
steps:
test-base-step:
<<: *base-step
test base step with latest image:
<<: *base-step
image: golang:latest
test list overwrite:
<<: *base-step
commands:
- <<: *base-cmds
- hostname