Skip to content

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 in /go #21

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 in /go

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 in /go #21

Workflow file for this run

name: Go
on:
push:
branches:
- '**'
paths:
- 'go/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Build
working-directory: go
run: go build -v ./...
- name: Test
working-directory: go
run: go test -v ./...