Bump actions/upload-artifact from 6 to 7 in the all group #273
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@v5" | |
| - 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/ |