From fbb51cdece179736abc3422849a0724cece2871b Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Sat, 12 May 2018 17:39:11 -0700 Subject: [PATCH] Add travis.yml This will run automated tests against PR's for the groupcache library. --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ef6e676 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: go +go_import_path: github.com/golang/groupcache + +os: linux +dist: trusty +sudo: false + +script: + - go test ./... + +go: + - 1.9.x + - 1.10.x + - master + +cache: + directories: + - $GOPATH/pkg