Skip to content

build(release): add cross-platform release targets and GH workflow #2

build(release): add cross-platform release targets and GH workflow

build(release): add cross-platform release targets and GH workflow #2

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Run tests
run: go test -v ./...