mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-05-31 06:13:55 +00:00
21 lines
741 B
YAML
21 lines
741 B
YAML
version: 2
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
# using custom image, see .circleci/images/primary/Dockerfile
|
|
- image: govgo/robotgoci:0.0.1
|
|
working_directory: /go/src/github.com/go-vgo/robotgo
|
|
steps:
|
|
- checkout
|
|
# specify any bash command here prefixed with `run: `
|
|
# override:
|
|
# './...' is a relative pattern which means all subdirectories
|
|
# - run: go get -u github.com/go-vgo/robotgo
|
|
# - run: go get -u golang.org/x/sys/unix
|
|
# - 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) |