This commit is contained in:
c-bata 2018-10-25 21:23:44 +09:00
parent 686353937b
commit e70a1a55e2

View File

@ -17,7 +17,6 @@ jobs:
include:
- stage: Lint
script:
- go build ./_example/simple-echo/main.go
- diff <(goimports -d $(find . -type f -name '*.go' -not -path "./vendor/*")) <(echo -n "")
- make lint
go: "1.11.x"
@ -25,20 +24,8 @@ jobs:
- stage: Build
script:
- make build
go:
- "1.11.x"
- tip
- stage: Unit Test
script:
- make test
go:
- "1.11.x"
- tip
allow_failures:
- go: tip
script:
- go build ./_example/simple-echo/main.go
- diff <(goimports -d $(find . -type f -name '*.go' -not -path "./vendor/*")) <(echo -n "")
- make lint
- make test