Skip to content

bump version

bump version #18

Workflow file for this run

---
name: test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
go-version:
- 1.20.x
- 1.19.x
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
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 ./...