musala/.drone.yml

19 lines
319 B
YAML
Raw Normal View History

2022-08-18 20:55:00 +02:00
---
kind: pipeline
type: docker
name: default
steps:
- name: Backend
image: golang:1.13
commands:
- |
2022-08-18 21:09:05 +02:00
go get -v -t -d ./...
2022-08-18 20:55:00 +02:00
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
2022-08-18 21:10:12 +02:00
- go build
2022-08-18 20:55:00 +02:00
#