Skip to content

Update x/tools to fix panic in tests with Go 1.23 #41

Update x/tools to fix panic in tests with Go 1.23

Update x/tools to fix panic in tests with Go 1.23 #41

Workflow file for this run

name: test_and_lint
on:
pull_request:
types: [opened, synchronize]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Test
run: go test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.2
args: '--disable-all --enable=goimports --enable=govet --exclude "printf: non-constant format string"'