fix: Put the correct mimeType when importing files #1207
Workflow file for this run
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 | |
# 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 |