Backend Tests on 945/merge by @ldaugusto #1001
This file contains 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: "Backend Tests" | |
run-name: "Backend Tests on ${{ github.ref_name }} by @${{ github.actor }}" | |
on: | |
pull_request: | |
paths: | |
- "apps/opik-backend/**" | |
push: | |
branches: | |
- 'main' | |
paths: | |
- "apps/opik-backend/**" | |
workflow_dispatch: | |
jobs: | |
run-backend-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: apps/opik-backend/ | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'corretto' | |
cache: maven | |
- name: Run Tests for backend | |
env: | |
TESTCONTAINERS_REUSE_ENABLE: true | |
run: mvn clean test -Dmaven.test.failure.ignore=true | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: '**/target/surefire-reports/TEST-*.xml' | |
fail_on_failure: true | |
summary: true | |
detailed_summary: true |