commit 202a76d07cb1e613a184b032c8f81679563acac6 from: Stephen Day date: Wed May 25 21:23:34 2016 UTC Merge pull request #17 from docker/add-travisci Added TravisCI and CodeCov hook commit - 11b5e5c76a74a8f15cea07bc515b15c778bcf186 commit + 202a76d07cb1e613a184b032c8f81679563acac6 blob - /dev/null blob + 16e148eaaa58c36a4f86250a8bc46dc489bbf9f4 (mode 644) --- /dev/null +++ .travis.yml @@ -0,0 +1,11 @@ +language: go + +go: + - 1.6 + +script: + - go test -coverprofile=coverage.txt -covermode=atomic -race + +# CODECOV_TOKEN set in travisCI ENV +after_success: + - bash <(curl -s https://codecov.io/bash) blob - 4eb0aac4c655e82320ae1ed968ca70853ba270ab blob + d893fbca179838036f73ef18bb716a52c46f5ab2 --- README.md +++ README.md @@ -1,4 +1,4 @@ -# p9p [![GoDoc](https://godoc.org/github.com/docker/go-p9p?status.svg)](https://godoc.org/github.com/docker/go-p9p) [![CircleCI](https://circleci.com/gh/docker/go-p9p.svg?style=shield)](https://circleci.com/gh/docker/go-p9p) [![Go Report Card](https://goreportcard.com/badge/github.com/docker/go-p9p)](https://goreportcard.com/report/github.com/docker/go-p9p) +# p9p [![GoDoc](https://godoc.org/github.com/docker/go-p9p?status.svg)](https://godoc.org/github.com/docker/go-p9p) [![Apache licensed](https://img.shields.io/badge/license-Apache-blue.svg)](https://raw.githubusercontent.com/docker/go-p9p/master/LICENSE) [![CircleCI](https://circleci.com/gh/docker/go-p9p.svg?style=shield)](https://circleci.com/gh/docker/go-p9p) [![TravisCI](https://travis-ci.org/docker/go-p9p.svg?branch=master)](https://travis-ci.org/docker/go-p9p) [![Go Report Card](https://goreportcard.com/badge/github.com/docker/go-p9p)](https://goreportcard.com/report/github.com/docker/go-p9p) A modern, performant 9P library for Go.