Skip to content

build(deps): bump goreleaser/goreleaser-action from 4.2.0 to 4.4.0 #412

build(deps): bump goreleaser/goreleaser-action from 4.2.0 to 4.4.0

build(deps): bump goreleaser/goreleaser-action from 4.2.0 to 4.4.0 #412

Workflow file for this run

---
name: Build
on:
push:
branches: [main, release-*]
pull_request:
jobs:
build:
name: Build and test on go ${{ matrix.go_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: [1.18, 1.19]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Check out code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
fetch-depth: 0
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: ${{ matrix.go_version }}
cache: true
- name: Get dependencies
run: go mod download
- name: Build
run: make build
- name: Test
run: make test