Skip to content

Commit

Permalink
feat: remove unused jobs and fixes invalid kover path on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
isfaaghyth committed Aug 25, 2024
1 parent 6b0a78b commit 73325de
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
id: kover
uses: mi-kas/kover-report@v1
with:
path: ${{ github.workspace }}/mobile/build/reports/kover/report.xml
path: ${{ github.workspace }}/build/reports/kover/report.xml
token: ${{ secrets.GITHUB_TOKEN }}
title: Code Coverage
update-comment: true
Expand All @@ -47,12 +47,7 @@ jobs:
matrix:
config: [
{ target: android, os: ubuntu-latest, tasks: testDebugUnitTest testReleaseUnitTest, continueOnError: false },
{ target: apple, os: macos-latest, tasks: iosX64Test iosSimulatorArm64Test macosX64Test macosArm64Test tvosX64Test tvosSimulatorArm64Test watchosX64Test watchosSimulatorArm64Test, continueOnError: false },
{ target: windows, os: windows-latest, tasks: windowsTest, continueOnError: true }, # https://github.com/square/okio/issues/951
{ target: linux, os: ubuntu-latest, tasks: linuxTest, continueOnError: false },
{ target: js, os: ubuntu-latest, tasks: jsTest, continueOnError: false },
{ target: wasm, os: ubuntu-latest, tasks: wasmJsTest, continueOnError: false },
{ target: desktop, os: ubuntu-latest, tasks: desktopTest, continueOnError: false },
{ target: apple, os: macos-latest, tasks: iosX64Test iosSimulatorArm64Test, continueOnError: false },
]
runs-on: ${{ matrix.config.os }}
name: Build ${{ matrix.config.target }}
Expand Down

0 comments on commit 73325de

Please sign in to comment.