Add support for buy data to home screen and buy data, borrow airtime,… #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branch Test Workflow | |
on: | |
push: | |
branches-ignore: [ main, development, qa ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
APP_SIGN_KEYSTORE_PATH: /tmp/keystore | |
CACHE_BUNDLER: ~/.bundler | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Gradle Properties | |
env: | |
HoverUsername: ${{ secrets.HOVER_USERNAME }} | |
HoverPassword: ${{ secrets.HOVER_PASSWORD }} | |
shell: bash | |
run: | | |
mkdir ~/.gradle | |
echo "GRADLE_USER_HOME=$HOME/.gradle" >> $GITHUB_ENV | |
echo "HoverUsername=$HoverUsername" >> ~/.gradle/gradle.properties | |
echo "HoverPassword=$HoverPassword" >> ~/.gradle/gradle.properties | |
- name: Checkout the Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Cache Gradle | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Bundler Cache | |
uses: actions/cache@v1 | |
with: | |
path: $CACHE_BUNDLER | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Run Tests on Fastlane | |
uses: maierj/[email protected] | |
with: | |
lane: branch | |
options: '{ "conf": "branch" }' | |
skip-tracking: false | |
subdirectory: fastlane | |
bundle-install-path: CACHE_BUNDLER |