Apache Jena CI #127
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
| ## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | |
| name: Apache Jena CI | |
| # Manual | |
| on: workflow_dispatch | |
| # push: | |
| # branches: [ main ] | |
| # pull_request: | |
| # branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| java_version: ['21', '25'] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK ${{ matrix.java_version }} | |
| uses: actions/setup-java@v6.0.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java_version }} | |
| - name: Build with Maven | |
| run: mvn -B --file pom.xml -Dmaven.javadoc.skip=true install |