Skip to content

Fixed ANTLR4 4.13.1 version #7

Fixed ANTLR4 4.13.1 version

Fixed ANTLR4 4.13.1 version #7

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
go-tests:
concurrency:
group: go-tests-${{ github.event_name }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
go-version: [1.22.x, 1.23.x]
os: [ubuntu, windows, macos]
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: |
go get github.com/stretchr/[email protected]
go mod tidy
- name: Run tests
run: go test ./...