Skip to content

Get to compile with go 1.22 #64

Get to compile with go 1.22

Get to compile with go 1.22 #64

Workflow file for this run

name: Go Test
on: [push]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go 1.22
uses: actions/setup-go@v1
with:
go-version: 1.22
id: go
- name: Test
run: go test -v ./...