21 строка
340 Б
YAML
21 строка
340 Б
YAML
language: go
|
|
go:
|
|
- 1.1
|
|
- 1.2
|
|
- 1.3
|
|
- 1.4
|
|
- 1.5
|
|
- 1.6
|
|
- tip
|
|
|
|
script:
|
|
# pull all external dependencies
|
|
- go get gopkg.in/cucumber/gherkin-go.v3
|
|
- go get github.com/shiena/ansicolor
|
|
|
|
# run standard go tests
|
|
- go test -v
|
|
- go test -race
|
|
|
|
# run features
|
|
- go run cmd/godog/main.go --format=progress --concurrency=4
|