ci: add go1.17

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2021-06-10 13:59:10 -07:00
parent 55e93b89f1
commit a587180136
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.15.x, 1.16.x]
go-version: [1.15.x, 1.16.x, 1.17.x]
rootless: ["rootless", ""]
race: ["-race", ""]

View File

@@ -1,4 +1,4 @@
ARG GO_VERSION=1.16
ARG GO_VERSION=1.17
ARG BATS_VERSION=v1.3.0
FROM golang:${GO_VERSION}-buster