From 9c47d00044c62164c58728ad18245ba2f3129dc7 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Sat, 21 Nov 2020 21:30:23 +0500 Subject: [PATCH] CI config improvements. --- .gitlab-ci.yml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 591304a..4f71f0a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,5 @@ +image: golangci/golangci-lint:v1.32.2 + stages: - test @@ -5,6 +7,29 @@ lint: stage: test tags: - docker - image: golangci/golangci-lint:v1.32.2 script: - golangci-lint run + +test-1.15: + stage: test + tags: + - docker + image: golang:1.15 + script: + - go test -test.v ./... + +test-1.14: + stage: test + tags: + - docker + image: golang:1.14 + script: + - go test -test.v ./... + +test-1.13: + stage: test + tags: + - docker + image: golang:1.13 + script: + - go test -test.v ./...