Skip to content

Release 1.1.0: changelog + version bump #10

Release 1.1.0: changelog + version bump

Release 1.1.0: changelog + version bump #10

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.16', '1.17']
name: Go ${{ matrix.go }} tests
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Run Tests
run: go test -v ./...