Skip to content

Intercept stdout/stderr, and prefix them with the target #5

Intercept stdout/stderr, and prefix them with the target

Intercept stdout/stderr, and prefix them with the target #5

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