Update actions/upload-artifact action to v4 #373
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: Instrumented Testing | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
run_tests: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Create keys.txt | |
env: | |
KEYS_TXT: ${{ secrets.KEYS_TXT }} | |
run: echo $KEYS_TXT > keys.txt | |
- name: Create google-services.json | |
env: | |
FIREBASE_SECRET: ${{ secrets.GOOGLE_SERVICES }} | |
run: echo $FIREBASE_SECRET > app/google-services.json | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 27 | |
profile: pixel_3_xl | |
arch: x86_64 | |
disable-animations: true | |
script: ./gradlew connectedDebugAndroidTest --stacktrace --scan | |
- name: Upload test reports | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: reports | |
path: app/build/reports |