Skip to content

Fixing tests for reading coeffs #142

Fixing tests for reading coeffs

Fixing tests for reading coeffs #142

Workflow file for this run

name: Unittests
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.19', '1.20', '1.21', '1.22', '1.23' ]
name: Setup Go ${{ matrix.go }} environment
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Unittests
run: go test -v -cover ./...