Skip to content

chore: increse code coverage #216

chore: increse code coverage

chore: increse code coverage #216

Workflow file for this run

---
name: Build and Test
defaults:
run:
shell: bash
concurrency:
group: "${{ github.head_ref }}${{ github.ref }}"
cancel-in-progress: true
env:
JAVA_VERSION: 17
NODEJS_VERSION: 16.17.0
ATALA_GITHUB_ACTOR: ${{ secrets.GITHUB_TOKEN }}
ATALA_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches:
- "main"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Install Java ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: "zulu"
- name: Gradle Build Action
uses: gradle/gradle-build-action@v2
- name: Runner
run: echo ${{ runner.os }}
- name: Build for JS, Android, JVM
run: ./gradlew build allTests koverXmlReportRelease koverHtmlReportRelease --stacktrace
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: "${{ github.workspace }}/edge-agent-sdk/build/reports/android/result.xml"
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish test results
if: always()
uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
files: "${{ github.workspace }}/edge-agent-sdk/build/test-results/testReleaseUnitTest/TEST-*.xml"
comment_title: "Unit Test Results"
check_name: "Unit Test Results"
- name: Upload Tests Reports
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-results
path: |
edge-agent-sdk/build/reports/jvm
edge-agent-sdk/build/reports/android
if-no-files-found: error