Skip to content

bump go version

bump go version #24

Workflow file for this run

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