Skip to content

Ready for v2.4.0

Ready for v2.4.0 #33

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- "**.md"
- "LICENSE"
pull_request:
paths-ignore:
- "**.md"
- "LICENSE"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ["1.20", "1.21"]
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -race