robotgo/vendor/github.com/vcaesar/gops/circle.yml
2019-09-05 14:02:40 -04:00

23 lines
517 B
YAML

# circle.yml #
# machine:
# go:
# version: 1.9.1
version: 2
jobs:
build:
docker:
- image: golang:1.12.7
# - image: govgo/go:1.12.7
working_directory: /gopath/src/github.com/vcaesar/gops
steps:
- checkout
# specify any bash command here prefixed with `run: `
- run: go get -v -t -d ./...
- run: go test -v ./...
# codecov.io
- run: go test -v -covermode=count -coverprofile=coverage.out
- run: bash <(curl -s https://codecov.io/bash)