deps: bump the maven-version group with 4 updates #97
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/gradle-build-action@v3 | |
| - name: Set up kubectl | |
| uses: azure/setup-kubectl@v5 | |
| with: | |
| version: v1.35.0 | |
| - name: Set up kind | |
| run: | | |
| curl -fsSL -o ./kind https://kind.sigs.k8s.io/dl/v0.31.0/kind-linux-amd64 | |
| chmod +x ./kind | |
| sudo mv ./kind /usr/local/bin/kind | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build with Gradle | |
| run: ./gradlew build | |
| - name: Run tests | |
| run: ./gradlew cleanTest test | |
| - name: Run compatibility smoke tests | |
| run: bash ./scripts/compatibility-smoke.sh | |
| - name: Run real Keycloak integration smoke test | |
| run: bash ./scripts/keycloak-integration-smoke.sh |