Skip to content

Add support for unmarshalling top-level links (#56) #184

Add support for unmarshalling top-level links (#56)

Add support for unmarshalling top-level links (#56) #184

Workflow file for this run

name: test
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.21', '1.22']
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v4
- name: test
run: go test -v ./...
- name: test-race
run: go test -v -race ./...