Source: davelms.medium.com

Get started with CI/CD using Buddy
Welcome to the second part of a series of articles comparing CI/CD platforms. A new deployment will need to occur after every push to main branch, and during the series this same requirement will be implemented across several CI/CD tools.

The core concept of the Buddy platform is the pipeline that allows you to build, test and deploy your application on a single push to a chosen branch.

Select your repository and Buddy will auto-detect the language as Python and give you the option to set up your pipeline.

For example, you will see that Buddy will automatically create a pip cache to save your dependencies — this is a good feature, one we typically would want anyway, and so by being enabled by default this saves users from having to spend the time to configure it.

Related Articles