hook up linter

This commit is contained in:
Brad Rydzewski
2019-10-16 23:47:18 -07:00
parent 47c1f5248a
commit 241df7a44b
30 changed files with 724 additions and 24 deletions

39
engine/linter/testdata/simple.yml vendored Normal file
View File

@@ -0,0 +1,39 @@
---
kind: pipeline
type: docker
name: amd64
steps:
- name: build
image: golang
commands:
- go build
- name: test
image: golang
commands:
- go test
services:
- name: database
image: redis
ports:
- 6379
---
kind: pipeline
name: arm
platform:
arch: arm
steps:
- name: test
image: golang
commands:
- go build
- go test
depends_on:
- amd64
...