Skip to content

fix: revert archive format to goreleaser v2 compatible syntax #3

fix: revert archive format to goreleaser v2 compatible syntax

fix: revert archive format to goreleaser v2 compatible syntax #3

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build
run: go build ./...
- name: Test
run: go test -v -race -coverprofile=coverage.txt ./...
- name: Vet
run: go vet ./...