mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-06-03 07:33:55 +00:00
25 lines
566 B
YAML
25 lines
566 B
YAML
# circle.yml #
|
|
# machine:
|
|
# go:
|
|
# version: 1.9.1
|
|
|
|
version: 2
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: govgo/go:1.10.3
|
|
working_directory: /gopath/src/github.com/vcaesar/tt
|
|
steps:
|
|
- checkout
|
|
# specify any bash command here prefixed with `run: `
|
|
# - run: go get -u github.com/shirou/gopsutil
|
|
- 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)
|
|
|
|
# script:
|
|
# - ./go.test.sh
|
|
|