1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-05 10:20:36 +02:00
woodpecker/pipeline/schema/.woodpecker/test-merge-map-and-sequence.yml
2023-06-07 12:04:37 +02: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