Skip to content

GH-2340: Remove the server-per-testsuite switch from Fuseki tests #864

GH-2340: Remove the server-per-testsuite switch from Fuseki tests

GH-2340: Remove the server-per-testsuite switch from Fuseki tests #864

Workflow file for this run

## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
name: Maven Build on PR
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build-pr:
## Dependabot only
## if: github.actor == 'dependabot[bot]'
strategy:
fail-fast: false
matrix:
jdk_distribution: ['temurin']
os: [ubuntu-latest]
java_version: ['25']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v5.6.0
with:
distribution: ${{ matrix.jdk_distribution }}
java-version: ${{ matrix.java_version }}
- name: Build with Maven (Java${{ matrix.java_version }} ${{ matrix.jdk_distribution }})
## No javadoc - that needs visual check
run: mvn -B --file pom.xml -Dmaven.javadoc.skip=true install