update dependency org.gradle:test-retry-gradle-plugin to v1.5.5 #1544
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: Java CI with Gradle | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
# Run job on CF landscape, e.g. ubuntu 1804 and bellsoft java 11 | |
permissions: | |
contents: read | |
jobs: | |
uaa_standalone_test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ '11', '17' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'liberica' | |
java-version: ${{ matrix.java }} | |
cache: 'gradle' | |
- run: ./gradlew --no-daemon -Dspring.profiles.active=default,hsqldb -DfailOnPassedAfterRetry=false --no-daemon test |