Skip to content

chore(deps): Update module github.com/stretchr/testify to v1.12.0 (#42) #101

chore(deps): Update module github.com/stretchr/testify to v1.12.0 (#42)

chore(deps): Update module github.com/stretchr/testify to v1.12.0 (#42) #101

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
go: [ "oldstable", "stable" ]
platform: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v7
with:
cache: true
go-version: ${{ matrix.go }}
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -timeout 1h ./...