clean up test and build step. makes more sense now.

This commit is contained in:
Greg Gauthier 2021-03-18 07:52:33 +00:00
parent 9dd8ef46bd
commit e67d973c2f
1 changed files with 2 additions and 9 deletions

View File

@ -1,8 +1,3 @@
# Template Go (Golang) build
# This template allows you to validate your Go (Golang) code.
# The workflow allows running tests, build and code linting on the default branch.
image: golang:1.15
pipelines:
@ -11,12 +6,10 @@ pipelines:
- step:
name: Test and Build
script:
- mkdir test-reports
- go get -u github.com/jstemmer/go-junit-report
- go test -v 2>&1 | go-junit-report > test-reports/report.xml
- mkdir build
- go mod vendor
- go mod tidy
- go test -v
- mkdir build
- go build -o build/gostations github.com/gmgauthier/gostations
- step:
name: Lint code