Skip to content

Merge branch 'master' into unixv1 #139

Merge branch 'master' into unixv1

Merge branch 'master' into unixv1 #139

Workflow file for this run

name: CI
"on": [ push ]
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
go-version:
- "1.20"
- "1.21"
- "1.22"
- "1.23"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: make test