Category: Tutorials

  • Adding colors to PEST on Github actions

    After a few months of writing tests using PEST I always wondered why I was seeing tests output with colors on my local but plain white on Github Actions, it felt so bland. Even having colors=”true” on phpunit.xml didn’t do the trick, every test would return the following: Luckily, the solution is simple! You just…

  • Rebasing like a ninja

    Even wondered what is rebase and when to use it. On today’s topic we will cover it and give you a few use cases. Git is a powerful version control system that allows developers to collaborate on code and keep track of changes. One of the most useful features of Git is the ability to…