(🎁) Adopt kotlinx-kover

This commit is contained in:
kotlinisland
2022-09-20 20:11:24 +10:00
committed by Jakub Chrzanowski
parent b9899689ae
commit 4921c83f03
2 changed files with 14 additions and 1 deletions

View File

@@ -77,7 +77,7 @@ jobs:
# Run tests
- name: Run Tests
run: ./gradlew test
run: ./gradlew check
# Collect Tests Result of failed tests
- name: Collect Tests Result
@@ -87,6 +87,12 @@ jobs:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests
# Upload Kover report to CodeCov
- uses: codecov/codecov-action@v3
with:
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml
fail_ci_if_error: true
# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
uses: actions/cache@v3