Skip to content

Bump goreleaser/goreleaser-action from 4.2.0 to 4.4.0 #281

Bump goreleaser/goreleaser-action from 4.2.0 to 4.4.0

Bump goreleaser/goreleaser-action from 4.2.0 to 4.4.0 #281

Workflow file for this run

name: Go
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Go environment
uses: actions/[email protected]
with:
go-version: 1.20.1
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v ./...