Skip to content

Update to go 1.22

Update to go 1.22 #15

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- run: go mod download
- run: go build -v
- run: go test -count 1 ./...