Bump org.testcontainers:testcontainers from 1.19.8 to 2.0.3 in /post-processing-service #1
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: Unit Test Runner | |
| on: | |
| pull_request: | |
| paths: | |
| - "investigation-service/**" | |
| - "ldfdata-service/**" | |
| - "person-service/**" | |
| - "post-processing-service/**" | |
| - "observation-service/**" | |
| - "organization-service/**" | |
| - "build.gradle" | |
| - "settings.gradle" | |
| - "gradle/**" | |
| jobs: | |
| pipeline: | |
| name: Build and analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: "zulu" # Alternative distribution options are available | |
| - name: Cache Gradle packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: ${{ runner.os }}-gradle | |
| - name: Build and analyze | |
| working-directory: ./ | |
| run: | | |
| ./gradlew clean build jacocoTestReport | |
| - name: Publish Testing Reports | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: testing | |
| path: ./**/build/reports |