Skip to content

feat: goreleaser exclude Merge pull request from changelog #141

feat: goreleaser exclude Merge pull request from changelog

feat: goreleaser exclude Merge pull request from changelog #141

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '>=1.17.0'
check-latest: true
-
name: Install dependencies
run: |
go version
go install golang.org/x/lint/golint@latest
-
name: Run build
run: go build .
-
name: Run vet & lint
run: |
go vet .
golint .