Skip to content

Merge pull request #23 from asfaltboy/patch-1 #51

Merge pull request #23 from asfaltboy/patch-1

Merge pull request #23 from asfaltboy/patch-1 #51

Workflow file for this run

name: build
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
jobs:
test-build:
name: Test & Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '>=1.20.0'
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run go mod tidy
run: |
set -e
go mod tidy
output=$(git status -s)
if [ -z "${output}" ]; then
exit 0
fi
echo 'We wish to maintain a tidy state for go mod. Please run `go mod tidy` on your branch, commit and push again.'
echo 'Running `go mod tidy` on this CI test yields with the following changes:'
echo "$output"
exit 1
- name: Test
run: |
go test -race ./...
- name: Lint
uses: dominikh/[email protected]
with:
version: "2023.1.1"
install-go: false
- name: Build
run: go build ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
# only release on tags
if: success() && startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.ERRWRAP_ACTIONS_BOT_TOKEN }}