Skip to content

refactor(clp-s): Add ANTLR-generated parsers to codebase to eliminate need for code dependencies at build time. #22

refactor(clp-s): Add ANTLR-generated parsers to codebase to eliminate need for code dependencies at build time.

refactor(clp-s): Add ANTLR-generated parsers to codebase to eliminate need for code dependencies at build time. #22

name: "clp-s-antlr-generation"
on:
pull_request:
push:
schedule:
# Run daily at 00:15 UTC (the 15 is to avoid periods of high load)
- cron: "15 0 * * *"
workflow_dispatch:
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
antlr-generation-check:
name: "antlr-generation-check"
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest"]
runs-on: "${{matrix.os}}"
steps:
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683"
with:
submodules: "recursive"
- uses: "actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38"
with:
python-version: "3.11"
- name: "Install task"
shell: "bash"
run: "npm install -g @go-task/cli"
- if: "matrix.os == 'macos-latest'"
name: "Install coreutils (for md5sum)"
run: "brew install coreutils"
- name: "Run clp-s-generate-antlr-check task"
shell: "bash"
run: "task clp-s-generate-antlr-check"