Skip to content

Commit

Permalink
feature: split sonar action from pr action
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-lcapellino committed Oct 16, 2024
1 parent 3992689 commit 1b79ded
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/pull-request_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@ jobs:

- name: Run unit & integration tests
run: mvn -pl tx-models,tx-backend,tx-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B verify
- name: Upload integration test results
uses: actions/upload-artifact@v3
with:
name: integration-test-results
path: "${{ github.workspace }}/tx-backend/target/failsafe-reports"
- name: Upload unit test results
uses: actions/upload-artifact@v3
with:
name: unit-tests-results
path: "**/surefire-reports/"

Sonar:
needs: Test
Expand Down

0 comments on commit 1b79ded

Please sign in to comment.