Run Device Tests #22
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: Run Device Tests | |
# read-write repo token | |
# access to secrets | |
on: | |
workflow_run: | |
workflows: ["Build & Test Project"] | |
types: | |
- completed | |
jobs: | |
device-tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
run-id: ${{github.event.workflow_run.id }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Display structure of downloaded files | |
run: ls -R | |
# - name: Decode Firebase Service Account JSON | |
# run: echo ${{ secrets.FIREBASE_SERVICE_ACCOUNT_BASE_64 }} | base64 -d > service_account.json | |
# | |
# - name: 'Run Device Tests on Firebase Test Lab' | |
# run: | | |
# gcloud auth login --cred-file=service_account.json | |
# gcloud config set project vocable-fcb07 | |
# gcloud firebase test android run \ | |
# --app apk/debug/app-debug.apk \ | |
# --test apk/androidTest/debug/app-debug-androidTest.apk \ | |
# --device version=34,orientation=portrait,model=MediumPhone.arm,locale=en_US \ | |
# --test-runner-class com.willowtree.vocable.utility.VocableTestRunner |