Skip to content

✨ feat: Multiple changes on login system #39

✨ feat: Multiple changes on login system

✨ feat: Multiple changes on login system #39

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- '*'
jobs:
android_build_and_test:
name: Android - build and test
runs-on: ubuntu-22.04
env:
isCI: "true"
BASE_SCHEME: ${{ secrets.BASE_URL_DEBUG }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: '17'
- name: Create local.properties
run: echo "BASE_URL=${BASE_SCHEME}" >> local.properties
- name: Build android
run: ./gradlew assembleDebug --stacktrace