From a002da67dec4958f22f320676bb66b12c326e3e8 Mon Sep 17 00:00:00 2001 From: Gisle Aune Date: Sat, 23 Jun 2018 12:55:37 +0200 Subject: [PATCH] Added .drone.yml with test --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..d2dbf18 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +pipeline: + test: + image: golang:${GO_VERSION} + commands: + - go test ./... -v + +matrix: + GO_VERSION: + - latest + - "1.10" + - "1.9" + - "1.8" + - "1.7" + - "1.6" \ No newline at end of file