2021-03-17 12:09:09 +00:00
|
|
|
# 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:
|
|
|
|
default:
|
|
|
|
- parallel:
|
|
|
|
- step:
|
|
|
|
name: Test and Build
|
|
|
|
script:
|
2021-03-18 07:33:35 +00:00
|
|
|
- mkdir test-reports
|
|
|
|
- go get -u github.com/jstemmer/go-junit-report
|
|
|
|
- go test -v 2>&1 | go-junit-report > test-reports/report.xml
|
2021-03-17 12:09:09 +00:00
|
|
|
- mkdir build
|
|
|
|
- go mod vendor
|
|
|
|
- go mod tidy
|
|
|
|
- go build -o build/gostations github.com/gmgauthier/gostations
|
|
|
|
- step:
|
|
|
|
name: Lint code
|
|
|
|
image: golangci/golangci-lint:v1.31.0
|
|
|
|
script:
|
|
|
|
- golangci-lint run -v
|