Skip to content

update goreleaser config #63

update goreleaser config

update goreleaser config #63

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.18
- name: Build cli
run: go build ./cmd/codeowners
- name: Test
run: go test ./... -v