musala/.drone.yml
Glenn Y. Rolland f37667e1f5
Some checks failed
continuous-integration/drone/push Build is failing
ci: Fix typo for dependencies download
2022-08-18 21:09:05 +02:00

19 lines
318 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: Backend
image: golang:1.13
commands:
- |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- go test
#