When there's no current JinjavaInterpreter, don't limit the maximum number of deferred tokens #481
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11, 17 ] | |
name: jdk-${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: ${{ matrix.java }} | |
cache: "maven" | |
- name: "Build" | |
run: mvn --batch-mode -no-transfer-progress -V verify | |
env: | |
JDK_JAVA_OPTIONS: --add-opens=java.base/java.lang=ALL-UNNAMED |