Skip to content

Alternative fix for #236 that avoids decoding entire string #290

Alternative fix for #236 that avoids decoding entire string

Alternative fix for #236 that avoids decoding entire string #290

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: ['1.22', '1.21', '1.20', '1.19', '1.18', '1.17']
name: Go ${{ matrix.go }} on Linux
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Build and Test
run: |
gawk --version
go test -race ./...
build-windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
go: ['1.22', '1.17']
name: Go ${{ matrix.go }} on Windows
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Install Gawk
run: choco install gawk
- name: Build and Test
run: |
gawk --version
go test -race ./...
build-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
go: ['1.22', '1.17']
name: Go ${{ matrix.go }} on macOS
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Install Gawk
run: brew install gawk
- name: Build and Test
run: |
gawk --version
export MallocNanoZone=0 # Fix SIGABRT with -race on macOS: https://github.com/golang/go/issues/49138
go test -race ./...