Category: github, bitbucket

Note: This is part of a series that focuses on different CICD tools, where we will be looking at CircleCI next. If you are interested to know more about GitHub Actions, you can click here. In this article, we are going to focus on two main things: Travis CI is a hosted continuous integration service that can be used on GitHub or Bitbucket repository.

A .travis.yml is used to specify the steps to be taken by Travis CI, this is to be added to your repository so that Travis CI will run build on the source code. In this example, we will be using our Go project hosted in GitHub repository and of course, Travis CI does support other programming languages as well.

Related Articles