Skip to content

Improve scoping for workflow runs #4

Improve scoping for workflow runs

Improve scoping for workflow runs #4

Workflow file for this run

name: test
on:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
go:
- "1.21"
- "1.20"
runs-on: ${{ matrix.os }}
name: golines test (using go ${{ matrix.go }} on ${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- name: test golines
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
- run: make test