From 53c494c03de1a27292cc05b18a45e72cb5b6b272 Mon Sep 17 00:00:00 2001 From: Matthew Rothenberg Date: Sun, 13 Aug 2023 12:42:37 -0400 Subject: [PATCH] chore(ci): add go1.21 to default test matrix --- .github/workflows/coverage.yml | 2 +- .github/workflows/test.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9259a2f..ec6ef40 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -9,6 +9,6 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 with: - go-version: "1.20" + go-version: "stable" - run: go test -coverprofile=coverage.txt -covermode=atomic - uses: codecov/codecov-action@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 950be6f..c90cb57 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,7 @@ jobs: - "1.18" - "1.19" - "1.20" + - "1.21" name: Go ${{ matrix.go }} test steps: - uses: actions/checkout@v3