Tag Archives: GitHub
CI/CD – Continuous Integration, Continuous Delivery, and Continuous Deployment
Continuous Integration (CI) CI is the process of automatically building and testing your software on a regular basis. CI tools run builds and tests triggered by these commits. This improves consistency for testing, provides faster feedback, and reduces bugs in production. Any time a commit is added to a branch, CI tests can let you…
Markdown Basics
Markdown is a simple markup language for creating formatted text in a plain-text editor. Conventionally, readme files are written in markdown and saved with the .md extension. Github looks for a readme.md file and displays it under the bottom of the code tab of a repository.