Skip to content

Commit

Permalink
run tests on cloud.drone.io
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-nyt committed Mar 14, 2020
1 parent c6680f1 commit 25ada8e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .drone.yml
@@ -0,0 +1,26 @@
kind: pipeline
name: default
type: docker

workspace:
base: /go
path: src/github.com/nytimes/gizmo


steps:
- name: tests
image: "golang:1.14"
pull: always
environment:
GO111MODULE: on
GOPROXY: https://proxy.golang.org
commands:
- make deps
- make pretest
# - 'go get github.com/mattn/goveralls@master'
# - make coverage
when:
event:
- pull_request
- push

0 comments on commit 25ada8e

Please sign in to comment.