Skip to content

Removed unsupported goreleaser flag #431

Removed unsupported goreleaser flag

Removed unsupported goreleaser flag #431

Workflow file for this run

name: Build
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Build
run: go build -v
- name: Test
run: go test -v ./...