Skip to content

Use generics to stub a single value with auto-reset #23

Use generics to stub a single value with auto-reset

Use generics to stub a single value with auto-reset #23

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 ./...