Files
remark42/.drone.yml
T
2017-12-20 15:29:54 -06:00

20 lines
441 B
YAML

workspace:
base: /go
path: src/github.com/umputun/remark
pipeline:
build:
image: golang:1.9-alpine
commands:
- apk add --no-cache --update tzdata && cp /usr/share/zoneinfo/America/Chicago /etc/localtime
- cd app
- go get -v ./...
- go test -v ./...
docker:
image: plugins/docker
repo: umputun/remark
secrets: [ docker_username, docker_password ]
tags: ${DRONE_REPO_BRANCH}