Add CI and CD

This commit is contained in:
Angelos Chalaris
2018-09-01 12:46:53 +03:00
parent 5fe46db125
commit 9ff410e1b4
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
### Continuous Deployment
Continuous Deployment follows the testing that happens during Continuous Integration and pushes changes to a staging or production system.
Continuous Deployment ensures that a version of the codebase is accessible at all times.

View File

@ -0,0 +1,4 @@
### Continuous Integration
Continuous Integration (CI) is the practice of testing each change done to a codebase automatically and as early as possible.
Two popular CI systems that integrate with GitHub are Travis CI and Circle CI.