Skip to content

chore(deps): bump org.xerial:sqlite-jdbc from 3.51.1.0 to 3.51.3.0 (#… #383

chore(deps): bump org.xerial:sqlite-jdbc from 3.51.1.0 to 3.51.3.0 (#…

chore(deps): bump org.xerial:sqlite-jdbc from 3.51.1.0 to 3.51.3.0 (#… #383

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test on Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 1
matrix:
java: [ 21, 25 ]
steps:
- uses: actions/checkout@v6
- name: Set up Java version ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- uses: actions/cache@v5
with:
path: /home/runner/.m2/
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build project
run: mvn -B clean install