Skip to content

Commit 0ddc85d

Browse files
committed
Drop support for Go 1.20 and add support for Go 1.22
Also update golangci-lint from 1.55.2 to 1.57.1
1 parent 56f9375 commit 0ddc85d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/go.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,29 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
12+
1313
strategy:
1414
matrix:
15-
go: [ '1.20', '1.21' ]
16-
15+
go: [ '1.21', '1.22' ]
16+
1717
name: Go ${{ matrix.go }}
18-
18+
1919
steps:
2020
- uses: actions/checkout@v4
2121

2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
2525
go-version: ${{ matrix.go }}
26-
26+
2727
- name: golangci-lint
2828
uses: golangci/golangci-lint-action@v3
2929
with:
30-
version: v1.55.2
30+
version: v1.57.1
3131

3232
- name: Test
3333
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
34-
34+
3535
- name: Send coverage to Coveralls
3636
uses: shogo82148/actions-goveralls@v1
3737
with:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# dktest
22

3-
![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/dhui/dktest/go.yml?branch=master) [![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.20%2C%201.21-lightgrey.svg)
3+
![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/dhui/dktest/go.yml?branch=master) [![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.21%2C%201.22-lightgrey.svg)
44

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

0 commit comments

Comments
 (0)