Adds error message on status header #1675
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: Testing Workflow | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
testing: | |
name: Lint Check and Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Chekout Repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK 11.0.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11.0.8 | |
- name: Run Android Linter | |
run: ./gradlew :sphinx:application:sphinx:lintDebug --warning-mode=all | |
- name: Run Unit Tests | |
run: ./gradlew :sphinx:application:sphinx:testDebugUnitTest | |
- name: Assemble Debug APK | |
run: ./gradlew :sphinx:application:sphinx:assembleDebug | |
- name: Assemble Debug Test APK | |
run: ./gradlew :sphinx:application:sphinx:assembleDebugAndroidTest |