fix: resolution-qa-task-61 (#96) #15
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: Tests | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
android_build_and_test: | |
name: Android - run tests | |
runs-on: ubuntu-22.04 | |
env: | |
isCI: "true" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: "17" | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.3 | |
- name: Add current platform to Bundler lockfile | |
run: | | |
bundle lock --add-platform ruby | |
bundle lock --add-platform x86_64-linux | |
- name: Install Gems | |
run: bundle install | |
- name: Run Tests | |
run: bundle exec fastlane test | |
env: | |
BASE_URL: ${{ secrets.BASE_URL_DEBUG }} |