diff options
author | Igor Drozdov <idrozdov@gitlab.com> | 2022-08-16 12:04:19 +0200 |
---|---|---|
committer | Igor Drozdov <idrozdov@gitlab.com> | 2022-08-16 12:04:19 +0200 |
commit | 0c8bb63577476eaf7a9315352a8704510b08a55c (patch) | |
tree | 423bdacc4bbf98ee393de03e13dc077efd0864e7 | |
parent | 8d46766f3c223ec82c23b2f1210ac3a0a81731eb (diff) | |
download | gitlab-shell-0c8bb63577476eaf7a9315352a8704510b08a55c.tar.gz |
Add Golang 1.19 to CI
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7ee6e64..d0f33da 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -61,7 +61,7 @@ tests: image: golang:${GO_VERSION} parallel: matrix: - - GO_VERSION: ["1.17", "1.18"] + - GO_VERSION: ["1.17", "1.18", "1.19"] after_script: - make coverage coverage: '/\d+.\d+%/' |