Skip to content

Adding Go 1.23 Iterator Support #76

Adding Go 1.23 Iterator Support

Adding Go 1.23 Iterator Support #76

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
e2e:
strategy:
matrix:
go-version: ["=1.18", "^1.23"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: |
go test -v .