Skip to content

Commit

Permalink
[TASK] Include logs in test artifact on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
eliashaeussler committed Jan 2, 2025
1 parent 67aba75 commit ecac2fa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: acceptance-reports-${{ matrix.php-version }}-${{ matrix.typo3-version }}-${{ matrix.dependencies }}
path: .Build/log/acceptance-reports
path: |
.Build/log/acceptance-reports
var/log/typo3_*.log
if: failure()

coverage:
Expand Down Expand Up @@ -149,7 +151,9 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: acceptance-reports-coverage
path: .Build/log/acceptance-reports
path: |
.Build/log/acceptance-reports
var/log/typo3_*.log
if: failure()

coverage-report:
Expand Down

0 comments on commit ecac2fa

Please sign in to comment.