Skip to content

Bump org.junit.jupiter:junit-jupiter from 5.10.2 to 5.10.3 #614

Bump org.junit.jupiter:junit-jupiter from 5.10.2 to 5.10.3

Bump org.junit.jupiter:junit-jupiter from 5.10.2 to 5.10.3 #614

Workflow file for this run

name: Integration testing
on:
push:
branches:
- "**"
jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: "Checkout sources"
uses: "actions/checkout@v4"
- name: "Configure Java"
uses: "actions/setup-java@v4"
with:
distribution: "temurin"
java-version: 22
- name: "Setup Gradle"
uses: "gradle/actions/setup-gradle@v3"
- name: "Run the tests"
run: "./gradlew test --configuration-cache --build-cache --no-watch-fs --stacktrace --scan"