cwtch/.drone.yml

14 lines
334 B
YAML

workspace:
base: /go
path: src/cwtch.im/cwtch
pipeline:
build:
image: golang
commands:
- echo "Fetching Deps"
- go list ./... | xargs go get
- go get -u github.com/golang/lint/golint
- go list ./... | xargs go vet
- go list ./... | xargs golint -set_exit_status
- sh testing/tests.sh