Update build workflow

This commit is contained in:
Melon 2025-02-09 19:17:44 +00:00
parent 34d84031ea
commit b0ababa177
Signed by: melon
GPG Key ID: 6C9D970C50D26A25

View File

@ -4,12 +4,12 @@ jobs:
test: test:
strategy: strategy:
matrix: matrix:
go-version: [1.22.x] go-version: [1.23.x]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v5
with: with:
go-version: ${{ matrix.go-version }} go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: make build - run: make build
- run: go test ./... - run: go test ./...