Skip to content

batch: Improve and add example #18

batch: Improve and add example

batch: Improve and add example #18

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: Tests
jobs:
test:
strategy:
matrix:
go-version: ['1.26.x', '1.25.x']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: go test -v ./...