Skip to content

Set minimum Go version #3

Set minimum Go version

Set minimum Go version #3

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
unit:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.24'
- run: go version
- name: Run tests
run: go test -v -coverprofile coverage ./...