Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Update README for archiving (#180) #39

Update README for archiving (#180)

Update README for archiving (#180) #39

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