From 8d0aff5e370b9d3c9652c814506654d6762da7d9 Mon Sep 17 00:00:00 2001 From: Jaana Burcu Dogan Date: Mon, 4 Sep 2017 09:54:58 -0700 Subject: [PATCH] switch to Circle CI --- .circleci/config.yml | 15 +++++++++++++++ .travis.yml | 5 ----- README.md | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 .circleci/config.yml delete mode 100644 .travis.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..42c5932a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +# Golang CircleCI 2.0 configuration file +# +# Check https://circleci.com/docs/2.0/language-go/ for more details +version: 2 +jobs: + build: + docker: + - image: circleci/golang:1.9 + + working_directory: /go/src/github.com/google/gops + steps: + - checkout + + # specify any bash command here prefixed with `run: ` + - run: go test -v ./... diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 3f50850c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -language: go - -go: - - 1.8 - - 1.9 diff --git a/README.md b/README.md index 32a287d6..8dc50f12 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # gops -[![Build Status](https://travis-ci.org/google/gops.svg?branch=master)](https://travis-ci.org/google/gops)[![GoDoc](https://godoc.org/github.com/google/gops/agent?status.svg)](https://godoc.org/github.com/google/gops/agent) +[![GoDoc](https://godoc.org/github.com/google/gops/agent?status.svg)](https://godoc.org/github.com/google/gops/agent) gops is a command to list and diagnose Go processes currently running on your system.