Skip to content

Raise human-readable error in case of incorrect usage of _on or _ special variables in expressions #669

Raise human-readable error in case of incorrect usage of _on or _ special variables in expressions

Raise human-readable error in case of incorrect usage of _on or _ special variables in expressions #669

Workflow file for this run

name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
defaults:
run:
working-directory: compiler
steps:
- name: Checkout compiler
uses: actions/checkout@v4
with:
path: compiler
- name: Checkout tests
uses: actions/checkout@v4
with:
repository: kaitai-io/kaitai_struct_tests
path: tests
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run tests
run: sbt test