chore(deps): update dependency org.testcontainers:junit-jupiter to v1.21.4 #57
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: Run tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: { fetch-depth: 0 } | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build BFF project with Gradle | |
| run: ./gradlew build | |
| - name: Upload CTRF Report | |
| uses: actions/upload-artifact@v4 | |
| if: always() # Run even if tests fail | |
| with: | |
| name: ctrf-report | |
| path: build/reports/specmatic/graphQL/stub/ctrf/*.json | |
| retention-days: 5 | |
| # Display CTRF test results | |
| - name: Publish Test Results | |
| uses: ctrf-io/github-test-reporter@v1 | |
| if: always() # Run even if tests fail | |
| with: | |
| report-path: './build/reports/specmatic/graphQL/stub/ctrf/*.json' |