Update Jena to 5.3.0 #598
Workflow file for this run
This file contains 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: Scala build and test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
java: 17 | |
- os: ubuntu-latest | |
java: 21 | |
- os: ubuntu-latest | |
java: 23 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Setup SBT | |
uses: sbt/setup-sbt@v1 | |
- name: Build and test | |
shell: bash | |
run: sbt -v +test | |
- name: Test building assemblies | |
shell: bash | |
run: sbt -v +jenaPlugin/assembly +rdf4jPlugin/assembly |