Skip to content

Update dependencies to work with Go 1.22 #70

Update dependencies to work with Go 1.22

Update dependencies to work with Go 1.22 #70

Workflow file for this run

name: errcheck
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
go: ["1.18.x", "1.19.x", "1.20.x", "1.21.x"]
name: go ${{ matrix.go }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...