Skip to content

Reject extra command line args and fix README invocation #108

Reject extra command line args and fix README invocation

Reject extra command line args and fix README invocation #108

Workflow file for this run

name: Go Build Matrix
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
cross:
name: Build on ${{ matrix.os }} with Go ${{ matrix.go-version }}
runs-on: ${{ matrix.os }}
env:
CGO_ENABLED: 0
strategy:
matrix:
go-version:
- oldstable
- stable
os:
- ubuntu-latest
- macos-14 # M1 runners
- macos-latest
- windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build the module
run: go build -v ./...