2019-12-15 21:49:18 +00:00
|
|
|
on: pull_request
|
|
|
|
|
|
|
|
name: Check pull request
|
2019-10-02 05:14:16 +00:00
|
|
|
jobs:
|
2019-12-15 21:49:18 +00:00
|
|
|
test-pr:
|
2019-10-02 05:14:16 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2019-10-13 06:01:47 +00:00
|
|
|
- run: ./gradlew spotlessCheck build test lintDebug -Dpre-dex=false
|
|
|
|
- uses: actions/upload-artifact@master
|
2019-10-02 05:14:16 +00:00
|
|
|
with:
|
2019-10-13 06:01:47 +00:00
|
|
|
name: Debug APK
|
|
|
|
path: app/build/outputs/apk/debug/app-debug.apk
|