Skip to content

chore(ci): add goreleaser #13

chore(ci): add goreleaser

chore(ci): add goreleaser #13

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Set up Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version-file: 'go.mod'
- name: "Run build"
run: make build
- name: "Run unit tests"
run: make test