Skip to content

Add and fix copyright headers #20

Add and fix copyright headers

Add and fix copyright headers #20

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.24.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build ./cmd/multibuild
- name: Test
run: go test -v ./cmd/multibuild