Skip to content

Test with gotip

Test with gotip #2

Workflow file for this run

name: Test with gotip
on:
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os-version: ["ubuntu-22.04", "windows-2022", "macos-14", "windows-2025"]
runs-on: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
cache: false
- name: Install gotip
shell: bash
run: |
go install golang.org/dl/gotip@latest
gotip download
- name: Test
shell: bash
run: gotip test -race ./...