This repository was archived by the owner on Mar 24, 2026. It is now read-only.
build(deps-dev): bump org.apache.maven.plugins:maven-release-plugin from 3.3.0 to 3.3.1 #3
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: Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| XSPEC_TEST_ENV: ${{ matrix.env }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| java: [17, 21] | |
| env: [saxon-12, oxygen, saxon-11] | |
| exclude: | |
| - os: macos-latest | |
| env: saxon-11 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: ${{ 'temurin' }} | |
| - name: Run tests for *nix | |
| if: runner.os != 'Windows' | |
| run: > | |
| source test/ci/npm-ci.sh | |
| && source test/ci/install-deps.sh | |
| && test/ci/print-env.sh | |
| && test/ci/run-core-tests.sh | |
| && test/ci/maven-package.sh -q | |
| && test/ci/compile-java.sh -silent | |
| && test/ci/last-git-status.sh | |
| && test/ci/test-maven-jar.sh -silent | |
| - name: Run tests for Windows | |
| if: runner.os == 'Windows' | |
| shell: cmd | |
| run: > | |
| call test\ci\install-deps.cmd | |
| && call test\ci\print-env.cmd | |
| && call test\ci\run-core-tests.cmd | |
| && call test\ci\maven-package.cmd -q | |
| && call test\ci\compile-java.cmd -silent | |
| && call test\ci\last-git-status.cmd | |
| && call test\ci\test-maven-jar.cmd -silent | |
| - uses: actions/upload-artifact@v7 | |
| if: env.MAVEN_PACKAGE_VERSION != '' | |
| with: | |
| name: maven-package_${{ env.MAVEN_PACKAGE_VERSION }}_${{ matrix.os }}_java-${{ matrix.java }}_${{ matrix.env }} | |
| path: target/xspec-${{ env.MAVEN_PACKAGE_VERSION }}*.* | |
| if-no-files-found: error |