Update GitHub Actions workflows: bump actions/checkout
to v5 and `a…
#658
This file contains hidden or 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: Functional Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17', '21' ] | |
name: Java ${{ matrix.Java }} BuildAndTest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Setup java | |
uses: actions/setup-java@v5 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
- name: Test | |
run: ./gradlew functionalTest |