Skip to content

build(deps): bump org.junit:junit-bom from 5.11.2 to 5.11.3 #468

build(deps): bump org.junit:junit-bom from 5.11.2 to 5.11.3

build(deps): bump org.junit:junit-bom from 5.11.2 to 5.11.3 #468

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build & Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
jdk: [ 17, 21 ] # (open)JDK releases
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up openJDK version
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: 'zulu'
- name: Install Dependencies
run: npm install -g ro-crate-html-js
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build and Test with Gradle
run: ./gradlew -Dprofile=release build
- name: Upload (test) reports as artifact on GitHub on manual runs
if: github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v4
with:
name: test-report ${{ matrix.os }} JDK ${{ matrix.jdk }}
path: build/reports
- name: Do one Coveralls test report
if: matrix.os == 'ubuntu-latest' && matrix.jdk == 21
run: ./gradlew -Dprofile=release jacocoTestReport coveralls