diff options
-rw-r--r-- | .gitlab-ci.yml | 6 | ||||
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | VERSION | 2 |
4 files changed, 13 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e351fd1..c9c1744 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,6 +55,12 @@ go:1.14: extends: .test image: golang:1.14 +race: + extends: .test + image: golang:1.14 + script: + - make test_golang_race + codequality: extends: .use-docker-in-docker allow_failure: true @@ -1,3 +1,6 @@ +v13.2.0 +- Add HTTP status code to internal API logs !376 + v13.1.0 - Ensure we are pasing the parsed secret !381 @@ -21,6 +21,9 @@ test_ruby: test_golang: go test ./... +test_golang_race: + go test -race ./... + setup: _install bin/gitlab-shell _install: @@ -1 +1 @@ -13.1.0 +13.2.0 |