CI Pipelines in Elixir Projects

Continuous Integration (CI) is one of the most important practices introduced by the DevOps revolution, the goal is to reduce feedback loops while developing software. For this, pipelines with quality and compliance checks executed by a continuous integration server have become a fundamental part. They allow us to verify, to a certain extent, that the changes we are integrating meet the established criteria. Elixir has its own tools, and today we have various tools that allow us to automate different aspects of our code, put them in a pipeline, and execute them automatically with each commit....

July 29, 2024 · Me