Skip to content

Add NewT which automatically cleans up using t.Cleanup (#22) #26

Add NewT which automatically cleans up using t.Cleanup (#22)

Add NewT which automatically cleans up using t.Cleanup (#22) #26

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22.x', '1.23.x']
name: Go ${{ matrix.go }} tests
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run Tests
run: go test -v ./...