Skip to content

Update module path to v2 and fix import paths in examples #34

Update module path to v2 and fix import paths in examples

Update module path to v2 and fix import paths in examples #34

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go-version: [ 1.21.x, 1.22.x ]
name: Tests - Go ${{ matrix.go-version }}
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Run the tests
run: go test ./...