ci-cd-patterns

Installation
SKILL.md

CI/CD Patterns for Mobile

GitHub Actions for Android

Build, Test, and Lint Workflow

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

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

concurrency:
  group: android-ci-${{ github.ref }}
  cancel-in-progress: true
Installs
12
GitHub Stars
53
First Seen
Apr 7, 2026
ci-cd-patterns — ahmed3elshaer/everything-claude-code-mobile