From a999520a23a8fc232bfe3ef40f69a6f7d9f5bfde Mon Sep 17 00:00:00 2001 From: Tong Zhaoqi Date: Sun, 26 Nov 2023 17:13:21 +0800 Subject: [PATCH] Add Go 1.21 for matrix testing and reduce warning from codecov/codecov-action@v2 (#160) --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c13be08..2395596 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '1.18.x', '1.19.x', '1.20.x' ] + go: [ '1.18.x', '1.19.x', '1.20.x', '1.21.x' ] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v4 @@ -34,4 +34,4 @@ jobs: run: go test -race -coverprofile=coverage.txt -covermode=atomic ./... - name: Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3