Skip to content

add CI + reduce minumum go version #5

add CI + reduce minumum go version

add CI + reduce minumum go version #5

Workflow file for this run

name: Go Test
on: [push]
jobs:
test:
strategy:
matrix:
go-version:
- "1.15"
- "1.16"
- "1.17"
- "1.18"
- "1.19"
- "1.20"
- "1.21"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -v ./...