Skip to content

fix(deps): update module github.com/stretchr/testify to v1.9.0 (#91) #202

fix(deps): update module github.com/stretchr/testify to v1.9.0 (#91)

fix(deps): update module github.com/stretchr/testify to v1.9.0 (#91) #202

Workflow file for this run

name: Go
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: make test