This repository was archived by the owner on Aug 11, 2025. It is now read-only.
Bump the ivy-wallet group with 72 updates #2440
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GIT | |
uses: actions/checkout@v4 | |
- name: Setup Java SDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '18' | |
- name: Gradle cache | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Run unit tests | |
run: ./gradlew testDebugUnitTest | |
# code_coverage: | |
# needs: test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout GIT | |
# uses: actions/checkout@v4 | |
# | |
# - name: Setup Java SDK | |
# uses: actions/setup-java@v4 | |
# with: | |
# distribution: 'adopt' | |
# java-version: '18' | |
# | |
# - name: Enable Gradle Wrapper caching (optimization) | |
# uses: actions/cache@v4 | |
# with: | |
# path: | | |
# ~/.gradle/caches | |
# ~/.gradle/wrapper | |
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
# restore-keys: | | |
# ${{ runner.os }}-gradle- | |
# | |
# - name: Code Coverage | |
# run: ./gradlew koverHtmlReport | |
# | |
# - name: Upload Code Coverage report | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: code-coverage-report | |
# path: app/build/artifacts/reports/kover/coverageResults/* |