Skip to content

Downgrade Java to 17 for JBA plugin backward compatibility #90

Downgrade Java to 17 for JBA plugin backward compatibility

Downgrade Java to 17 for JBA plugin backward compatibility #90

Workflow file for this run

name: Checks
on: [ push ]
jobs:
tests:
name: Run tests for Java ${{ matrix.version }}
runs-on: [ self-hosted, small ]
strategy:
fail-fast: false
matrix:
version:
- 17
- 18
- 19
- 20
- 21
steps:
- uses: actions/checkout@v4
- name: Set up Java ${{ matrix.version }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '${{ matrix.version }}'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run tests
run: ./gradlew test --rerun-tasks --info