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]
Installs
3
GitHub Stars
3
First Seen
12 days ago
ci-pipeline — vndee/engineering-skills