Skip to content

Fix script

Fix script #23

Workflow file for this run

name: Android Build and Test
on:
push:
branches:
- 'feature/github_actions'
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
api-level: [31]
target: [default]
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set Cloudinary URL
run: |
bash tools/get_test_cloud.sh > cloudinary_url.txt
echo "CLOUDINARY_URL=$(cat cloudinary_url.txt)" >> $GITHUB_ENV
- name: Build and Test
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
arch: x86_64
profile: Nexus 6
script: ./gradlew connectedCheck