From fda3b469b399693ee323a258e811aa4773c14c08 Mon Sep 17 00:00:00 2001 From: cn Date: Thu, 13 Dec 2018 16:33:37 +0100 Subject: [PATCH] travis --- .travis.yml | 9 +++++++++ Makefile | 21 +++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .travis.yml create mode 100644 Makefile diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c4eb842 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +--- +sudo: false +language: go +go: + - "1.11.x" + - master + +env: + - GO111MODULE=on diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ff9cc2d --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +.POSIX: + +.PHONY: all +all: clean build test + +.PHONY: run +run: clean build test + cmd/munin-miflora/munin-miflora xyz 00:00:00:00:00:00 + +.PHONY: clean +clean: + rm -f cmd/munin-miflora/munin-miflora + +.PHONY: build +build: cmd/munin-miflora/munin-miflora + +.PHONY: test +test: build + +cmd/munin-miflora/munin-miflora: + cd cmd/munin-miflora; go build; cd ../..