Skip to content

ci: Update goreleaser config. #73

ci: Update goreleaser config.

ci: Update goreleaser config. #73

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [~1.19, ^1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...