Skip to content

- F Queryable.firstOrThrow #131

- F Queryable.firstOrThrow

- F Queryable.firstOrThrow #131

Workflow file for this run

---
name: Run tests against early access versions of JDK
on:
push:
branches: [master]
workflow_dispatch:
# Cancel existing executions when new commits are pushed onto the branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
java: ['EA', 'loom', 'valhalla']
os: [ubuntu, windows]
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: 'Set up latest JDK N from jdk.java.net'
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: ${{ matrix.java }}
- name: Build with Maven
run: |
./set_formatting_off.sh
./build_and_test.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/target/surefire-reports/*.xml'