Skip to content

Apache Jena CI

Apache Jena CI #127

Workflow file for this run

## 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