diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 6f9ace4..c8e1418 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -15,7 +15,8 @@ pipelines: - go get -u github.com/jstemmer/go-junit-report - go test tests/* -v 2>&1 | go-junit-report > test-reports/report.xml # Build compiles the packages - - go build -o ./build/ ./* + - mkdir ./build + - go build -o ./build/ ./*.go - step: name: Lint code image: golangci/golangci-lint:v1.31.0