Skip to content

Instantly share code, notes, and snippets.

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
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:
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:
@root-ansh-ct
root-ansh-ct / AdbCommands
Created February 8, 2022 06:03 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader