Skip to content

chore: remove 1.18 support (#70) #122

chore: remove 1.18 support (#70)

chore: remove 1.18 support (#70) #122

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
go-version:
- 1.21.x # Current version
- 1.22.x # Latest version
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...