drop the versions of go that are no longer supported + add 1.18 to ci

This commit is contained in:
Chan Kang 2022-06-19 20:27:09 -04:00 committed by Gary Burd
parent 78cf1bc733
commit 27d91a9be5
1 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@ jobs:
type: string type: string
default: "" default: ""
docker: docker:
- image: "circleci/golang:<< parameters.version >>" - image: "cimg/go:<< parameters.version >>"
working_directory: /go/src/github.com/gorilla/websocket working_directory: /home/circleci/project/go/src/github.com/gorilla/websocket
environment: environment:
GO111MODULE: "on" GO111MODULE: "on"
GOPROXY: "<< parameters.goproxy >>" GOPROXY: "<< parameters.goproxy >>"
@ -67,4 +67,4 @@ workflows:
- test: - test:
matrix: matrix:
parameters: parameters:
version: ["latest", "1.17", "1.16", "1.15", "1.14", "1.13", "1.12", "1.11"] version: ["1.18", "1.17", "1.16"]