Skip to content

Commit

Permalink
Remove if for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Daeda88 committed Jun 11, 2024
1 parent a385e08 commit 6da8053
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ jobs:

- name: run Android unit tests
run: ./gradlew testDebugUnitTest koverHtmlReport
- name: Test path
run: |
ls ${{ github.workspace }}/kaluga/build
- name: add coverage report to PR
id: kover
uses: mi-kas/kover-report@v1
# this action fails if there is no report, unlike the above actions, so check if there are files
if: ${{ always() && hashFiles('./build/reports/kover/report.xml') != '' }}
with:
path: ./build/reports/kover/report.xml
path: ${{ github.workspace }}/kaluga/build/reports/kover/report.xml
token: ${{ secrets.CI_SPLENDO_PAT }}
title: Code coverage
update-comment: true
Expand Down

0 comments on commit 6da8053

Please sign in to comment.