Skip to content

Merge branch 'justinrixx-per-attempt-timeouts' #13

Merge branch 'justinrixx-per-attempt-timeouts'

Merge branch 'justinrixx-per-attempt-timeouts' #13

Workflow file for this run

name: test
on: [push, pull_request]
env:
GOPROXY: https://proxy.golang.org,direct
jobs:
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test ./... -v -cover
- name: Race
run: go test ./... -race