Skip to content

build(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin … #18

build(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin …

build(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin … #18

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
java: ['11', '17', '21', '25']
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4.8.0
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- name: Verify (compile + test)
run: mvn --batch-mode --no-transfer-progress verify