Skip to content

Added the file picker in play store variant for move or copy the zim files in application's public directory #5595

Added the file picker in play store variant for move or copy the zim files in application's public directory

Added the file picker in play store variant for move or copy the zim files in application's public directory #5595

Workflow file for this run

name: Pull requests
on:
pull_request:
branches:
- '**'
jobs:
code_formatting_job:
name: Code Formatting
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Restore Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Static Analysis
run: ./gradlew ktlintCheck
- name: Upload ktlint Reports
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: ktlint-report
path: '**/build/reports/ktlint'
detekt:
name: Detekt
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Restore Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Static Analysis
run: ./gradlew detektDebug detektCustomExampleDebug
- name: Upload Lint Reports
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: detekt-report
path: '**/build/reports/detekt'
lint_job:
name: Lint
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Restore Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Run Debug Lint
run: ./gradlew app:lintDebug custom:lintCustomexampleDebug
- name: Upload Lint Reports
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: lint-report
path: '**/build/reports/lint-results-*'
assemble_job:
name: Assemble
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Build all configurations
run: ./gradlew assemble
- name: Upload APK as Artifacts
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: kiwix-android
path: |
**/*.apk