Skip to content

Bump goreleaser/goreleaser-action from 6.4.0 to 7.0.0 (#212) #307

Bump goreleaser/goreleaser-action from 6.4.0 to 7.0.0 (#212)

Bump goreleaser/goreleaser-action from 6.4.0 to 7.0.0 (#212) #307

Workflow file for this run

name: build and test
on:
workflow_dispatch: null
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
go-version: ["stable", "oldstable"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Build binary
run: make
- name: Test
run: make test