This file contains hidden or 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
runs: | |
using: "composite" | |
steps: | |
- name: Check lint | |
shell: bash | |
run: ./gradlew :app:lint :base:lint :common:lint :feat:home:lint :feat:profile:lint | |
- name: Upload Lint results | |
if: always() | |
uses: actions/upload-artifact@v2 |
This file contains hidden or 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: validate PR raised from task/** branched to develop branch | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
lint-staticChecks-test-build: | |
if: startsWith(github.head_ref, 'task/') | |
runs-on: ubuntu-latest | |
permissions: |
This file contains hidden or 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: validate PR raised from develop branched to master branch | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
lint-static_checks-test-build: | |
if: github.head_ref == 'develop' | |
runs-on: ubuntu-latest | |
permissions: |
This file contains hidden or 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
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |