Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

chore(deps): Bump github.com/stretchr/testify from 1.10.0 to 1.11.0 #75

chore(deps): Bump github.com/stretchr/testify from 1.10.0 to 1.11.0

chore(deps): Bump github.com/stretchr/testify from 1.10.0 to 1.11.0 #75

Workflow file for this run

name: go-vet-test
on: [push]
jobs:
vet-test:
name: Vet and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.20'
- run: |
go version
shell: bash
- name: Get dependencies
run: go mod verify
- name: Vet
run: go vet $(go list ./...)
- name: Test
run: go test -race -v $(go list ./...)