Skip to content

update x/tools to support 1.25 (also updates go.mod etc) (#21) #8

update x/tools to support 1.25 (also updates go.mod etc) (#21)

update x/tools to support 1.25 (also updates go.mod etc) (#21) #8

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.24.x', '1.25.x' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: pre-commit/action@v3.0.1
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run Go tests
run: go test ./...
- name: Run make tests
run: make test