Skip to content

parser wasnt iterating lines, so error messages were nonsensical. Fixed #1586

parser wasnt iterating lines, so error messages were nonsensical. Fixed

parser wasnt iterating lines, so error messages were nonsensical. Fixed #1586

Workflow file for this run

on:
push:
tags:
- v*
branches:
- main
pull_request:
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.18.x,]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...