Skip to content

Backend Tests on main by @andrescrz #148

Backend Tests on main by @andrescrz

Backend Tests on main by @andrescrz #148

Workflow file for this run

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/checkout@v4.1.1
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