mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 18:56:44 -04:00
30 lines
491 B
YAML
30 lines
491 B
YAML
name: Pull requests
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
|
|
staticAnalysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Static Analysis
|
|
run: ./gradlew ktlintCheck detekt app:lintDebug custom:lintCustomexampleDebug
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Build all configurations
|
|
run: ./gradlew assemble
|