Skip to content

bump up version to 0.3.16 #73

bump up version to 0.3.16

bump up version to 0.3.16 #73

Workflow file for this run

name: Go
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.22.x', '1.23.x' ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test
run: go test -v -race ./...