Skip to content

Commit

Permalink
ci: reduce tested go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
makew0rld committed Dec 18, 2024
1 parent cf4f1e1 commit a50e695
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,13 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.13", "1.21", "1.22", "1.23"]
go-version: ["1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: go-${{ hashFiles('**/go.sum') }}
restore-keys: |
go-
- name: Test
run: |
go test -race ./...

0 comments on commit a50e695

Please sign in to comment.