Skip to content

Bump org.junit.jupiter:junit-jupiter-api from 5.10.3 to 5.11.3 in /server #4248

Bump org.junit.jupiter:junit-jupiter-api from 5.10.3 to 5.11.3 in /server

Bump org.junit.jupiter:junit-jupiter-api from 5.10.3 to 5.11.3 in /server #4248

Workflow file for this run

name: Server
on: [push, pull_request]
jobs:
gradle-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache Gradle artifacts (downloaded JARs, the wrapper, and any downloaded JDKs)
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/jdks
key: ${{ runner.os }}-gradle-${{ hashFiles('**/.gradle/') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle
run: ./gradlew build
working-directory: ./server