Skip to content

More low hanging fruit (version bumps, mostly) (#171) #31

More low hanging fruit (version bumps, mostly) (#171)

More low hanging fruit (version bumps, mostly) (#171) #31

Workflow file for this run

name: test
on:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
go:
- "1.23"
- "1.24"
- "1.25"
runs-on: ${{ matrix.os }}
name: golines test (using go ${{ matrix.go }} on ${{ matrix.os }})
steps:
- uses: actions/checkout@v5
- name: test golines
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
- run: make test