Skip to content

Commit

Permalink
Update build workflow
Browse files Browse the repository at this point in the history
Update build workflow
  • Loading branch information
MGaetan89 committed Jan 24, 2024
1 parent 152e3d3 commit 56b45f1
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ jobs:
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
permissions:
pull-requests: write
env:
USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -127,10 +129,20 @@ jobs:
- name: Run Unit Tests
run: >
./gradlew
:pillarbox-analytics:testDebugUnitTest
:pillarbox-core-business:testDebugUnitTest
:pillarbox-player:testDebugUnitTest
:pillarbox-ui:testDebugUnitTest
:pillarbox-analytics:koverXmlReportDebug
:pillarbox-core-business:koverXmlReportDebug
:pillarbox-player:koverXmlReportDebug
:pillarbox-ui:koverXmlReportDebug
- name: Report Code Coverage
uses: madrapps/jacoco-report@v1
with:
paths: |
**/build/reports/kover/reportDebug.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 0
min-coverage-changed-files: 0
pass-emoji: 🟢
fail-emoji: 🔴

android-tests:
name: Android Tests
Expand Down

0 comments on commit 56b45f1

Please sign in to comment.