Skip to content

Update GitHub Actions workflows: bump actions/checkout to v5 and `a… #658

Update GitHub Actions workflows: bump actions/checkout to v5 and `a…

Update GitHub Actions workflows: bump actions/checkout to v5 and `a… #658

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