bird-lg-go/.circleci/config.yml
2021-01-13 23:37:32 +08:00

12 lines
237 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.15
working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}}
steps:
- checkout
- run: go get -v -t -d ./...
- run: go test -v ./...