Skip to content

Commit

Permalink
Drop support for Go 1.17 and add support for Go 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
dhui committed Oct 15, 2022
1 parent 142718e commit 91bcbaa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: 2.1

jobs:
"golang-1_17": &template
"golang-1_18": &template
machine:
# https://circleci.com/docs/2.0/configuration-reference/#available-machine-images
image: ubuntu-2004:202107-01
Expand All @@ -18,7 +18,7 @@ jobs:

environment:
GO111MODULE: "on"
GO_VERSION: "1.17.x"
GO_VERSION: "1.18.x"

steps:
- run: curl -sL -o ~/bin/gimme https://raw.githubusercontent.com/travis-ci/gimme/master/gimme
Expand All @@ -39,15 +39,15 @@ jobs:
- run: go get github.com/mattn/goveralls
- run: goveralls -service=circle-ci -coverprofile coverage.txt

"golang-1_18":
"golang-1_19":
<<: *template
environment:
GO_VERSION: "1.18.x"
GO_VERSION: "1.19.x"


workflows:
version: 2
build:
jobs:
- "golang-1_17"
- "golang-1_18"
- "golang-1_19"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dktest

[![CircleCI - Build Status](https://img.shields.io/circleci/build/github/dhui/dktest/master)](https://circleci.com/gh/dhui/dktest) [![Coverage Status](https://img.shields.io/coveralls/github/dhui/dktest/master.svg)](https://coveralls.io/github/dhui/dktest?branch=master) [![GoDoc](https://godoc.org/github.com/dhui/dktest?status.svg)](https://godoc.org/github.com/dhui/dktest) [![Go Report Card](https://goreportcard.com/badge/github.com/dhui/dktest)](https://goreportcard.com/report/github.com/dhui/dktest) [![GitHub Release](https://img.shields.io/github/release/dhui/dktest/all.svg)](https://github.com/dhui/dktest/releases) ![Supported Go versions](https://img.shields.io/badge/Go-1.17%2C%201.18-lightgrey.svg)
[![CircleCI - Build Status](https://img.shields.io/circleci/build/github/dhui/dktest/master)](https://circleci.com/gh/dhui/dktest) [![Coverage Status](https://img.shields.io/coveralls/github/dhui/dktest/master.svg)](https://coveralls.io/github/dhui/dktest?branch=master) [![GoDoc](https://godoc.org/github.com/dhui/dktest?status.svg)](https://godoc.org/github.com/dhui/dktest) [![Go Report Card](https://goreportcard.com/badge/github.com/dhui/dktest)](https://goreportcard.com/report/github.com/dhui/dktest) [![GitHub Release](https://img.shields.io/github/release/dhui/dktest/all.svg)](https://github.com/dhui/dktest/releases) ![Supported Go versions](https://img.shields.io/badge/Go-1.18%2C%201.19-lightgrey.svg)

`dktest` is short for **d**oc**k**er**test**.

Expand Down

0 comments on commit 91bcbaa

Please sign in to comment.