Skip to content

update go version to 1.22 #7

update go version to 1.22

update go version to 1.22 #7

Workflow file for this run

name: Tests
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.16.x', '1.17.x', '1.18.x', '1.19.x']
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -v