Clarify that auto send also sends when file name changes, based on ho… #1044
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: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Set up Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build with Gradle | |
run: ./gradlew assembleDebugUnitTest -Dpre-dex=false --no-configuration-cache | |
- name: Run Unit Tests | |
run: ./gradlew testDebugUnitTest -Dpre-dex=false -q --no-configuration-cache |