Skip to content

fix: Uri converter on list #4

fix: Uri converter on list

fix: Uri converter on list #4

Workflow file for this run

name: Testing
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 1 # Limit fetch depth to improve performance
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission to Gradle wrapper
run: chmod +x ./gradlew
- name: Unit Test
run: ./gradlew testDebugUnitTest
continue-on-error: true # Enable error handling and continue on failure
- name: Android Test Report
uses: asadmansr/android-test-report-action@v1.2.0
if: ${{ always() }}