...

/

Explaining CI/CD

Explaining CI/CD

Get introduced to CI/CD pipelines and learn to define CI/CD workflow in this lesson.

Before going deeper into GitHub Actions, we need to understand the terms CI and CD. In this section, we will go over each term and explain the differences.

CI

CI is a practice of automating the integration of code changes from multiple collaborators into a single project. It also concerns the ability to reliably release changes made to an application at any time. Without CI, we would have to manually coordinate the deployment, the integration of changes into an application, and security and regression checks.

Here’s a typical CI workflow:

  1. A developer creates a new branch from the main branch, makes changes, commits, and then pushes it to the branch.

  2. When the push is done, the code is ...