Bump quarkus.version from 3.38.1 to 3.39.3 #1435
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: Integration Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| test-core: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| max-parallel: 2 | |
| matrix: | |
| maven_profiles: ["jackson", "resteasy-jackson", "jsonb", "resteasy-jsonb"] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v6 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| cache: 'maven' | |
| - name: Compile | |
| run: ./mvnw install -Pquick | |
| - name: Integration Tests - Core | |
| run: ./mvnw -f integration-test/pom.xml clean verify -P it,${{ matrix.maven_profiles }} |