chore(deps): bump version.quarkus.platform from 3.34.3 to 3.34.5 #666
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: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| cache: 'maven' | |
| - name: Run tests and verify build | |
| run: ./mvnw --no-transfer-progress verify | |
| - name: Test website build | |
| run: QUARKUS_ROQ_GENERATOR_BATCH=true ./mvnw --no-transfer-progress -pl website package quarkus:run -DskipTests -P include-javadocs | |
| - name: Upload test results | |
| uses: actions/upload-artifact@v7 | |
| if: always() | |
| with: | |
| name: test-results | |
| path: | | |
| core/target/surefire-reports/ | |
| website/target/surefire-reports/ | |
| retention-days: 7 | |