What is Continuous Integration

The practice of building and testing your application on every check-in is known as continuous integration

Developers practicing CI merge their changes back to the main branch as often as possible. The developer's changes are validated by creating a build and running automated tests against the build. By doing so, you avoid the integration hell that usually happens when people wait for release day to merge their changes into the release branch.