Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Update JDK version in GitHub workflows #29

Update JDK version in GitHub workflows

Update JDK version in GitHub workflows #29

Workflow file for this run

name: Run Junit tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Test with Maven
run: mvn test