Skip to content

fix

fix #20

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
go-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.22', '1.23' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test with the Go CLI
run: go test