Skip to content

[bot] Sync client-go with OpenAPI spec (#585) #1213

[bot] Sync client-go with OpenAPI spec (#585)

[bot] Sync client-go with OpenAPI spec (#585) #1213

Workflow file for this run

name: test
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
jobs:
test:
strategy:
# Don't let one cell's failure cancel the others -- otherwise a single
# failing OS/version hides the status of every other combination.
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: [1.23.x, 1.24.x]
name: go-test
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- name: go-test
run: go test -race -v ./...