add ci + go module support
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Adrien Marquès 2019-11-18 15:58:54 +01:00
parent 847bfffcb3
commit 20410fe438
2 changed files with 14 additions and 0 deletions

11
.drone.yml Normal file
View File

@ -0,0 +1,11 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: golang:1.13
commands:
- go get ./...
- go test -v -race -cover -coverprofile ./coverage.out ./...

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.xdrm.io/go/clifmt
go 1.12