ci-pipeline
Installation
SKILL.md
CI/CD Pipeline Patterns
Overview
CI/CD templates for Go, Python, and React projects. Covers lint, test, type-check, build, and deploy stages.
Core principle: Fast feedback. Parallelize independent stages. Fail fast on cheap checks.
GitHub Actions — Go
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]