Skip to content

Enhanced maintenance: GH workflow and dependency automation #1

Enhanced maintenance: GH workflow and dependency automation

Enhanced maintenance: GH workflow and dependency automation #1

Workflow file for this run

name: Maven Test
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up JDK
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
java-version: "11"
distribution: "temurin"
- name: Test with Maven
run: mvn -B test