Merge pull request #3144 from drone/verify-build

verify if the application is buildable
This commit is contained in:
TP Honey 2021-09-20 10:33:11 +01:00 committed by GitHub
commit 9c80bfdcc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,8 @@ steps:
image: golang:1.14.15
commands:
- go test ./...
- go build -o /dev/null github.com/drone/drone/cmd/drone-server
- go build -o /dev/null -tags "oss nolimit" github.com/drone/drone/cmd/drone-server
- name: build
image: golang:1.14.15