Bump com.diffplug.spotless:spotless-maven-plugin from 3.1.0 to 3.2.1 … #183
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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-wasm: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Prepare the toolchain | |
| working-directory: wasm-lib | |
| run: ./prepare-ci.sh | |
| - name: Build SQLite | |
| working-directory: wasm-lib | |
| run: ./build.sh | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: libsqlite3-wasm | |
| path: wasm-lib/libsqlite3.wasm | |
| build: | |
| needs: build-wasm | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| java-version: [11] # 17, 21 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '${{ matrix.java-version }}' | |
| cache: maven | |
| - uses: actions/download-artifact@v7 | |
| with: | |
| name: libsqlite3-wasm | |
| - name: Test sqlite-jdbc-wasm | |
| run: mvn -B clean install | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v6 | |
| if: success() || failure() # always run even if the previous step fails | |
| with: | |
| report_paths: '**/target/surefire-reports/TEST-*.xml' |