ci-cd-android

Installation
SKILL.md

CI/CD for Android

GitHub Actions — complete workflow

# .github/workflows/ci.yml
name: Android CI

on:
  push:
    branches: [main, develop]
  pull_request:
    branches: [main, develop]

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true  # cancel in-progress runs on new push
Installs
8
GitHub Stars
13
First Seen
Apr 20, 2026
ci-cd-android — piyushverma0/android-agent-skills