Skip to content

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.2 to 3.11.3 #92

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.2 to 3.11.3

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.2 to 3.11.3 #92

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# When a new revision is pushed to a PR, cancel all in-progress CI runs for that
# PR. See https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
checks: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java-version: [11] # 17, 21
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '${{ matrix.java-version }}'
cache: maven
- name: Prepare the toolchain
working-directory: wasm-lib
run: ./prepare-ci.sh
- name: Build SQLite
working-directory: wasm-lib
run: ./build.sh
- name: Test sqlite-jdbc-wasm
run: mvn -B clean install
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/target/surefire-reports/TEST-*.xml'