Bump the all-minor group with 3 updates #313
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**/*.md' | |
| pull_request: | |
| paths-ignore: | |
| - '**/*.md' | |
| jobs: | |
| build: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| - uses: "actions/setup-java@v5" | |
| with: | |
| distribution: "temurin" | |
| java-version: "21" | |
| - uses: "gradle/actions/setup-gradle@v6" | |
| - run: "./gradlew build" | |
| - name: "Run ./gradlew functionalTest" | |
| run: | | |
| docker compose pull --quiet | |
| docker compose up -d | |
| docker compose up --exit-code-from=keycloak-config keycloak-config | |
| ./gradlew functionalTest | |
| docker compose down -v | |
| - uses: "actions/upload-artifact@v7" | |
| if: "always()" | |
| with: | |
| name: "test-reports" | |
| path: | | |
| **/build/reports/ | |
| **/build/test-results/ |