-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Hands-On Microservices with Kotlin
By :

Adding Continuous Integration and Continuous Delivery to our microservice will allow us to deliver our application at the fastest pace with great quality and is something that we should look for when we create our microservices. In this section, we will discuss some practices that you should consider when doing Continuous Integration and Continuous Delivery.
Maintaining your software working is not always easy, especially when you have several developers working on the same code base. Continuous Integration (CI) allows us to minimize the problems when working with our software. The main idea behind CI is that every single time that we push code to our repository, our tests runs, and this allows us to know if the change that we just made has broken our application, even if what is broken was not actually in the code that was modified.
This minimizes the problems of integrating software in a code base if someone pushes a piece of software that is faulty...