Fix out of bounds read/writes #193
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: ['8', '11', '17'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup test JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
- run: echo "test_java_home=$JAVA_HOME" >> $GITHUB_ENV | |
- name: Setup build JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Maven Test | |
run: mvn install -V -P ci -B -Dtest_java_home=${{ env.test_java_home }} |