Skip to content

refactor: clean up spec.test.ts to prepare for translation to Go and Python; other minor fixes to test CI #30

refactor: clean up spec.test.ts to prepare for translation to Go and Python; other minor fixes to test CI

refactor: clean up spec.test.ts to prepare for translation to Go and Python; other minor fixes to test CI #30

Workflow file for this run

# Copyright 2025 Google LLC
# SPDX-License-Identifier: Apache-2.0
name: Go tests and checks
on: pull_request
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22.x', '1.23.x', '1.24.x']
fail-fast: false
name: Go ${{ matrix.go-version }} Tests
steps:
- name: Checkout Repo
uses: actions/checkout@main
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@main
with:
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -C go -v ./... || true # TODO: Skip failures temporarily