Skip to content

add goreleaser

add goreleaser #6

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: run
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup
uses: actions/setup-go@v3
with:
go-version: '1.21.x'
- name: test
run: go test -cover -coverprofile=coverage.out ./... -v