Skip to content

Fixed migration of old .h2 stores. #4

Fixed migration of old .h2 stores.

Fixed migration of old .h2 stores. #4

name: Java build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build17:
name: Build on JDK 17
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones are disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build
run: mvn -B clean verify