Loading lesson path
stands for
Formula
Continuous Deployment/Delivery.It means your code is automatically tested and deployed every time you push. This helps you catch bugs early and deliver features faster, with less manual work.
Formula
CI/CD automates the process of testing and deploying your code. This means:Every time you push code to your Git repository:
Formula
The CI/CD service (like GitHub Actions or GitLab CI) detects the changeIt runs tests, builds your project, and can deploy automatically If something fails, you get notified right away
Formula
[Developer] -- push --> [Git Repository] -- triggers --> [CI/CD Pipeline: Test, Build, Deploy]Formula
Built into GitHub, uses YAML files in.github/workflows/Formula
Built into GitLab, uses.gitlab - ci.ymlFormula
Works with GitHub/GitLab, easy setup for many languagesFormula
Popular for open - source, uses.travis.ymlWorks with Azure DevOps and GitHub, supports many platforms
A single task, like checking out code or running tests