Skip to content

Commit

Permalink
CI tests: Try to generate reports even on failures
Browse files Browse the repository at this point in the history
  • Loading branch information
manuroe committed Jul 25, 2022
1 parent f7376b8 commit 4ef1d92
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,19 @@ jobs:
with:
name: report.html
path: build/test/report.html
if: ${{ success() || failure() }}
- uses: actions/upload-artifact@v2
with:
name: report.junit
path: build/test/report.junit
if: ${{ success() || failure() }}
- uses: actions/upload-artifact@v2
with:
name: MatrixSDK-macOS.xcresult
path: build/test/MatrixSDK-macOS.xcresult/
if: ${{ success() || failure() }}

# Upload coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: ${{ success() || failure() }}

0 comments on commit 4ef1d92

Please sign in to comment.