Skip to content

Commit

Permalink
update github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
makiuchi-d committed Sep 16, 2024
1 parent f8e199a commit b634134
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.23' ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: ${{ matrix.go }}

- name: Test
run: go test -v -race -shuffle=on ./...

0 comments on commit b634134

Please sign in to comment.