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