clean-up: IdentityZone samlConfig properties for UAA-as-SAML-IdP feature #3084
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 17 | |
permissions: | |
contents: read | |
jobs: | |
uaa_standalone_test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ '17' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'liberica' | |
java-version: ${{ matrix.java }} | |
cache: 'gradle' | |
- run: ./gradlew --no-daemon -Dspring.profiles.active=default,hsqldb -DfailOnPassedAfterRetry=false --no-daemon test |