Skip to content

chore: go1.23 + CI fixes #94

chore: go1.23 + CI fixes

chore: go1.23 + CI fixes #94

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test ./...