From 1fe06c7187d35e22f720a690ba9d0e15782f93ec Mon Sep 17 00:00:00 2001 From: Mikhail Faraponov <11322032+moredure@users.noreply.github.com> Date: Thu, 17 Mar 2022 11:00:11 +0200 Subject: [PATCH] Add go1.18 to the test matrix Github actions support go1.18 as well --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 543170aff..fbfe6c242 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: test: strategy: matrix: - go: [ 1.17, 1.16, 1.15 ] + go: [ 1.18, 1.17, 1.16, 1.15 ] name: Tests Go ${{ matrix.go }} runs-on: ubuntu-18.04