Skip to content

chore(ci): update test matrix #88

chore(ci): update test matrix

chore(ci): update test matrix #88

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.13"
- "1.14"
- "1.15"
- "1.16"
- "1.17"
- "1.18"
- "1.19"
- "1.20"
- "1.21"
- "1.22"
- "1.23"
name: Go ${{ matrix.go }} test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -race ./...