Skip to content

build: build and release on ubuntu-20.04 for older glibc versions (#121) #13

build: build and release on ubuntu-20.04 for older glibc versions (#121)

build: build and release on ubuntu-20.04 for older glibc versions (#121) #13

Workflow file for this run

name: test
on:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
# we need ubuntu 20.04 because golines needs
# to run on hosts with older glibc versions
- ubuntu-20.04
- 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