covid case datamart fixes #180
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: Containerized Functional Tests | |
| on: | |
| pull_request: | |
| paths: | |
| - "reporting-pipeline-service/**" | |
| - "liquibase-service/**" | |
| - "build.gradle" | |
| - "settings.gradle" | |
| - "gradle/**" | |
| - "docker-compose.yaml" | |
| - ".github/workflows/**" | |
| jobs: | |
| pipeline: | |
| name: Run functional tests | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| 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 reporting-pipeline-service:test-functional --continue | |
| - name: Publish Testing Reports | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: testing | |
| path: reporting-pipeline-service/build/reports |