Skip to content

Commit

Permalink
Run tests on supported go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
oz committed Sep 3, 2024
1 parent 7877a0e commit d3345de
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ jobs:
env:
GO111MODULE: auto
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22", "1.23"]

steps:
- uses: actions/checkout@v4

- name: Set up Go
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"

go-version: ${{ matrix.go-version }}
- name: Build
run: go build

- name: Test
run: go test -v .

0 comments on commit d3345de

Please sign in to comment.