Skip to content

Update maven dependencies, JVM version and GitHub actions in workflow #12

Update maven dependencies, JVM version and GitHub actions in workflow

Update maven dependencies, JVM version and GitHub actions in workflow #12

Workflow file for this run

---
name: Maven CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 21
- name: Build
run: mvn -B -DskipTests compile
- name: Run tests
run: mvn -B test