Skip to content

Fix goreleaser workflow once again, again #21

Fix goreleaser workflow once again, again

Fix goreleaser workflow once again, again #21

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
platform: [ubuntu-latest, windows-latest, macOS-latest]
name: Run ${{ matrix.go-version }} on ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: go test -race -v ./...