From 69b0da41dff1813f3939cf4ea09fbbb2d06b7719 Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Thu, 19 Sep 2024 19:33:58 +0200 Subject: Drop support for Go 1.16 and Go 1.17 (#203) Fixes #184--- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cabd79c..b179ab4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,6 @@ jobs: strategy: matrix: go: - - "1.16" - - "1.17" - "1.18" - "1.19" - "1.20" @@ -43,13 +41,8 @@ jobs: run: go build -v ./... - name: Test - if: ${{ matrix.go != '1.16' }} run: go test -v -coverprofile=coverage.txt -shuffle on ./... - - name: Test - if: ${{ matrix.go == '1.16' }} - run: go test -v -coverprofile=coverage.txt ./... - - name: Coverage uses: codecov/codecov-action@v3 -- cgit 1.4.1