Skip to content

Using goreleaser to handle the release process #9

Using goreleaser to handle the release process

Using goreleaser to handle the release process #9

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.22.x
- run: go mod download
- run: go test -v ./...
- run: go build -v .
- run: ./test.sh