Skip to content

release: v1.2.3

release: v1.2.3 #124

Workflow file for this run

name: Run test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-24.04
strategy:
matrix:
go: ['1.23']
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: |
make test