Skip to content

Change Go version number in go.mod to support Go 1.18 #5

Change Go version number in go.mod to support Go 1.18

Change Go version number in go.mod to support Go 1.18 #5

Workflow file for this run

name: "Test"
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.18.x
- 1.23.x
steps:
- name: checkout
uses: actions/checkout@v4
- name: install
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go-version }}'
- name: vet
run: go vet ./...
- name: test
run: go test -v -race ./...