mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-05 15:45:42 +02:00
* Setup snapshot deployment
* README: Update repository links
* README: Update workflow badge link
* README: Add link to Snapshot builds
* Fix snapshot/pull-request build conflict
* Deploy from feature/deploy-snapshots as well
* Revert "Deploy from feature/deploy-snapshots as well"
Confirmed it works well
This reverts commit 06f6bc0e8c
.
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
14 lines
341 B
YAML
14 lines
341 B
YAML
on: pull_request
|
|
|
|
name: Check pull request
|
|
jobs:
|
|
test-pr:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- run: ./gradlew spotlessCheck build test lintDebug -Dpre-dex=false
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: Debug APK
|
|
path: app/build/outputs/apk/debug/app-debug.apk
|