Skip to content

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 #37

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 #37

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
tags:
- v*
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...
- name: Build
run: go build -v .
- name: Run goreleaser in release mode
if: success() && startsWith(github.ref, 'refs/tags/v')
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}