go-chart/.circleci/config.yml
Will Charczuk f5889c93ae copy pasta
2018-10-12 09:24:20 -07:00

17 lines
390 B
YAML

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