Skip to content

fix: goreleaser builds #32

fix: goreleaser builds

fix: goreleaser builds #32

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
# os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install dependencies
run: |
go mod tidy
go mod download
- name: Run tests
run: go test ./...