godog/.circleci/config.yml
2020-02-05 20:26:11 -07:00

22 строки
325 Б
YAML

version: 2.1
executors:
go:
docker:
- image: circleci/go
jobs:
test:
environment:
GO111MODULE: auto
executor: go
steps:
- checkout
- run: cd $GOPATH
- run: go get github.com/DATA-DOG/godog/cmd/godog
- run: go test
workflows:
version: 2
test:
jobs:
- test