Skip to content

fix: remove brew tap from goreleaser, fix archive format deprecations #2

fix: remove brew tap from goreleaser, fix archive format deprecations

fix: remove brew tap from goreleaser, fix archive format deprecations #2

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 ./...