summary refs log tree commit diff stats
path: root/build/ci/drone.yml
blob: 32e778e0aee4e45225a25b852beada2c6a57645c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
kind: pipeline
name: testing

steps:
- name: vet
  image: golang:1.13
  commands:
    - go vet ./...

- name: test
  image: golang:1.13
  commands:
    - go test -v ./...