Skip to content

refactor: replace ANTLR parser with omni recursive descent parser #74

refactor: replace ANTLR parser with omni recursive descent parser

refactor: replace ANTLR parser with omni recursive descent parser #74

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Verify go.mod is tidy
run: |
go mod tidy
git diff --exit-code
- name: Run tests
run: go test -v -race -timeout 10m ./...