kiwix-android/.github/workflows/pull_request.yml
Sean Mac Gillicuddy 811f5bd7af Merge branch 'develop' into feature/macgills/detekt
# Conflicts:
#	.github/workflows/pull_request.yml
#	team-props/git-hooks/pre-commit.sh
2020-02-21 14:15:18 +00:00

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