Skip to content

Fix import path from v4 to v6 and update go mod version #183

Fix import path from v4 to v6 and update go mod version

Fix import path from v4 to v6 and update go mod version #183

Workflow file for this run

name: Test
on:
push:
branches: ['*']
tags: ['v*']
pull_request:
branches: ['*']
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["stable", "oldstable"]
os: ["ubuntu-latest", "ubuntu-24.04-arm"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Lint
if: matrix.latest
run: make lint
- name: Test
run: make cover
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v1