mirror of
https://github.com/TanelOrumaa/Estonian-ID-card-mobile-authenticator-POC.git
synced 2024-11-10 16:00:59 +02:00
aeb9a5dada
Mob-33 to main
34 lines
600 B
YAML
34 lines
600 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: ./MobileAuthApp
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: gradlew permission
|
|
run: chmod +x ./gradlew
|
|
|
|
- name: run gradlew
|
|
run: ./gradlew assembleDebug
|
|
|
|
- name: run tests
|
|
run: ./gradlew test
|
|
|
|
- name: upload apk
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: apk
|
|
path: MobileAuthApp/app/build/outputs/apk/debug/app-debug.apk
|