drone-yaml/yaml/linter/testdata/duplicate_name.yml

23 lines
221 B
YAML
Raw Permalink Normal View History

2019-01-23 00:44:17 +01:00
---
kind: pipeline
name: default
steps:
- name: build
image: golang
commands:
- go build
- go test
---
kind: pipeline
name: default
steps:
- name: build
image: golang
commands:
- go build
- go test
...