Skip to content

chore: lower go.mod directive from 1.26 to 1.25 (closes #70) #36

chore: lower go.mod directive from 1.26 to 1.25 (closes #70)

chore: lower go.mod directive from 1.26 to 1.25 (closes #70) #36

Workflow file for this run

name: Go
on:
push:
branches: [v6]
pull_request:
branches: [v6]
jobs:
build:
name: test (Go ${{ matrix.go-version }})
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.25.x', '1.26.x']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: make test
env:
GOGC: 50