Skip to content

Commit

Permalink
Test only two latest version. according to Go security policy https:/…
Browse files Browse the repository at this point in the history
  • Loading branch information
rerost committed Sep 16, 2024
1 parent aafeb14 commit 9138292
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:

strategy:
matrix:
go-version: ['1.11.x', '1.12.x', '1.13.x']
go-version: ['1.22.x', '1.23.x']
test-task: ['test', 'test-e2e']

steps:
Expand Down Expand Up @@ -37,17 +37,17 @@ jobs:

- run: make ${{ matrix.test-task }}
env:
COVER: ${{ matrix.go-version == '1.13.x' && matrix.test-task == 'test' }}
COVER: ${{ matrix.go-version == '1.23.x' && matrix.test-task == 'test' }}

- run: curl -s https://codecov.io/bash | bash -s -- -t $CODECOV_TOKEN
if: matrix.go-version == '1.13.x' && matrix.test-task == 'test'
if: matrix.go-version == '1.23.x' && matrix.test-task == 'test'

build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: 1.13
go-version: 1.23

- uses: actions/checkout@v1

Expand Down

0 comments on commit 9138292

Please sign in to comment.