Skip to content

Update CI

Update CI #138

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
strategy:
fail-fast: false
matrix:
go-version:
- "1.22"
- "1.23"
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# Run basic tests, we just want to make sure there is parity on Linux and
# macOS, and back to the oldest version of Go this library supports.
- name: Run tests
run: go test ./...