Category: Software, github

Of course, it does need to be in Go, and it can be in any languages like Node.js, Python, Java etc. Also, it’s best that you can try it out on your own repository as we go through the following: We all have heard of or used GitHub to store our source code and now with GitHub Actions, we are allowed to create a CICD pipeline to automate build, test, and deploy of our software directly in the GitHub repository.

To set up a complete pipeline, we can easily find a variety of actions contributed by the GitHub community in GitHub Marketplace. A workflow is a custom automated process that we can include in our repository to build, test, and deploy our source codes.

In this example, we will create two jobs, one is called ‘build’ and the next one will be called ‘deploy’.

Related Articles