about summary refs log tree commit diff stats
path: root/.github
diff options
context:
space:
mode:
authorMarkus Wüstenberg2024-09-19 19:33:58 +0200
committerGitHub2024-09-19 19:33:58 +0200
commit69b0da41dff1813f3939cf4ea09fbbb2d06b7719 (patch)
tree5c2eb3befabf9d666691a20f65d79513c5821e11 /.github
parentc97605aca761985ac45adfe19365801ec2682657 (diff)
downloadgomponents-69b0da41dff1813f3939cf4ea09fbbb2d06b7719.tar.lz
gomponents-69b0da41dff1813f3939cf4ea09fbbb2d06b7719.tar.zst
gomponents-69b0da41dff1813f3939cf4ea09fbbb2d06b7719.zip
Drop support for Go 1.16 and Go 1.17 (#203)
Fixes #184
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 0 insertions, 7 deletions
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