Skip to content

update github workflows to test on go 1.23 #12

update github workflows to test on go 1.23

update github workflows to test on go 1.23 #12

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "1.17"
- "1.20"
- "1.22"
- "1.23"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -bench=. -coverprofile=coverage.txt ./...