Skip to content

Update generated files #14

Update generated files

Update generated files #14

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: "Test (Go: ${{matrix.go}})"
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
go:
- '1.21'
- '1.22'
- '1.23'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: make build
- name: Test
run: make test