Этот коммит содержится в:
Viacheslav Poturaev 2021-08-17 11:29:12 +02:00 коммит произвёл GitHub
родитель d074262d59
коммит afaebf26c1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 17 добавлений и 5 удалений

Просмотреть файл

@ -15,7 +15,10 @@ executors:
- image: circleci/golang:1.15.5 - image: circleci/golang:1.15.5
exec_go_1_16: exec_go_1_16:
docker: docker:
- image: cimg/go:1.16.5 - image: cimg/go:1.16.7
exec_go_1_17:
docker:
- image: cimg/go:1.17
commands: commands:
fmt: fmt:
@ -81,6 +84,11 @@ jobs:
executor: exec_go_1_16 executor: exec_go_1_16
steps: steps:
- all - all
go1_17:
working_directory: /home/circleci/go/src/github.com/cucumber/godog
executor: exec_go_1_17
steps:
- all
workflows: workflows:
version: 2 version: 2
@ -90,3 +98,4 @@ workflows:
- go1_14 - go1_14
- go1_15 - go1_15
- go1_16 - go1_16
- go1_17

Просмотреть файл

@ -2,6 +2,7 @@
// Use of this source code is governed by a MIT-style // Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build !windows
// +build !windows // +build !windows
package colors package colors

Просмотреть файл

@ -2,6 +2,7 @@
// Use of this source code is governed by a MIT-style // Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build windows
// +build windows // +build windows
package colors package colors

Просмотреть файл

@ -1,5 +1,5 @@
// +build go1.12 //go:build go1.12 && !go1.13
// +build !go1.13 // +build go1.12,!go1.13
package builder_test package builder_test

Просмотреть файл

@ -1,3 +1,4 @@
//go:build go1.13
// +build go1.13 // +build go1.13
package builder_test package builder_test

Просмотреть файл

@ -108,9 +108,9 @@ You can now use `string` instead of `*godog.DocString` in declaration.
`godog.TestSuite` now can `RetrieveFeatures() ([]*models.Feature, error)` to expose parsed features to the user. `godog.TestSuite` now can `RetrieveFeatures() ([]*models.Feature, error)` to expose parsed features to the user.
### Added official support for go1.16 ### Added official support for go1.16 and go1.17
With the introduction of go1.16, go1.16 is now officially supported. With the introduction of go1.17, go1.17 and go1.16 are now officially supported.
### Running scenarios as subtests of *testing.T ### Running scenarios as subtests of *testing.T