Skip to content

fix panic on go 1.22.x #17

fix panic on go 1.22.x

fix panic on go 1.22.x #17

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- '1.18.x'
- '1.19.x'
- '1.20.x'
- '1.21.x'
- '1.22.x'
name: Go ${{ matrix.go }} job
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: make test
- name: Lint
run: make lint