feat: When cancelling the uploading transfer, we're going back to ImportFiles instead of closing Activity #1681
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: Android CI | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
instrumentation-tests: | |
if: github.event.pull_request.draft == false | |
runs-on: [ self-hosted, Android ] | |
strategy: | |
matrix: | |
api-level: [ 34 ] | |
target: [ google_apis ] | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout the code | |
uses: actions/[email protected] | |
with: | |
token: ${{ github.token }} | |
submodules: recursive | |
- name: Create test env.properties | |
run: | | |
touch env.properties | |
echo "sentryAuthToken=DummyToken" > env.properties | |
# Setup Gradle and Run tests | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Clean gradle cache | |
run: ./gradlew clean | |
- name: Run unit tests | |
run: ./gradlew testDebugUnitTest --stacktrace |