Skip to content

feat(GetRoot): add new API to obtain *testing.T from any given T (#7) #22

feat(GetRoot): add new API to obtain *testing.T from any given T (#7)

feat(GetRoot): add new API to obtain *testing.T from any given T (#7) #22

Workflow file for this run

name: Validation
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.21', '1.22' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Download dependencies
run: go mod download -x
- name: Test
run: go test ./...