CI/CD është shkurtim për Continuous Integration dhe Continuous Delivery/Deployment — praktika që automatizojnë ndërtimin, testimin dhe shpërndarjen e softuerit. Qëllimi është të lëshohen ndryshime shpesh, në mënyrë të besueshme dhe shpejt, me automatizim që zëvendëson proceset manuale, të ndjeshme ndaj gabimeve.
CI — Continuous Integration
CONTINUOUS INTEGRATION: developers frequently merge code into a shared branch, and each
change is AUTOMATICALLY built and tested:
→ on every push/PR: build the code + run tests (automatically)
→ catch integration problems and bugs EARLY (immediately, not weeks later)
→ keep the main branch in a working state
→ Frequent integration + automated verification = fewer, smaller, easier-to-fix problems.
