diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..0b7654d --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,17 @@ +version: 2 +jobs: + build: + working_directory: /go/src/github.com/wcharczuk/go-chart + docker: + - image: circleci/golang:1.11 + steps: + - checkout + - run: + name: new-install + command: make new-install + - run: + name: ci + command: make ci + - store_artifacts: + path: coverage.html + destination: coverage.html \ No newline at end of file diff --git a/.gitignore b/.gitignore index ab2dcb7..3e4b6e1 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ # Other .vscode .DS_Store +coverage.html \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 38ebb8e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: go - -go: - - 1.11 - -sudo: false - -before_script: - - go get -u github.com/blend/go-sdk/assert - - go get ./... - -script: - - go test ./... diff --git a/COVERAGE b/COVERAGE new file mode 100644 index 0000000..f309e21 --- /dev/null +++ b/COVERAGE @@ -0,0 +1 @@ +70.89 \ No newline at end of file diff --git a/Makefile b/Makefile index 0f8d424..84f7228 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,11 @@ all: test -tools: - @go get -u github.com/blend/go-sdk/_bin/coverage - @go get -u github.com/blend/go-sdk/_bin/profanity +ci: profanity coverage + +new-install: + @go get -v -u ./... + @go get -v -u github.com/blend/go-sdk/cmd/coverage + @go get -v -u github.com/blend/go-sdk/cmd/profanity test: @go test ./... @@ -11,5 +14,5 @@ test: profanity: @profanity -include="*.go,Makefile,README.md" -cover: +coverage: @coverage \ No newline at end of file diff --git a/README.md b/README.md index 57437ba..0ba77f8 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ go-chart ======== -[![Build Status](https://travis-ci.org/wcharczuk/go-chart.svg?branch=master)](https://travis-ci.org/wcharczuk/go-chart) [![Go Report Card](https://goreportcard.com/badge/github.com/wcharczuk/go-chart)](https://goreportcard.com/report/github.com/wcharczuk/go-chart) +[![CircleCI](https://circleci.com/gh/wcharczuk/go-chart.svg?style=svg)](https://circleci.com/gh/wcharczuk/go-chart) [![Go Report Card](https://goreportcard.com/badge/github.com/wcharczuk/go-chart)](https://goreportcard.com/report/github.com/wcharczuk/go-chart) Package `chart` is a very simple golang native charting library that supports timeseries and continuous -line charts. +line charts. The v1.0 release has been tagged so things should be more or less stable, if something changes please log an issue. @@ -17,9 +17,9 @@ To install `chart` run the following: > go get -u github.com/wcharczuk/go-chart ``` -Most of the components are interchangeable so feel free to crib whatever you want. +Most of the components are interchangeable so feel free to crib whatever you want. -# Output Examples +# Output Examples Spark Lines: