Tag Archives: CI/CD

Automated Code Review With codebeat

      No Comments on Automated Code Review With codebeat

Code reviews are an important part of our day-to-day life as developers. They improve the codebase and they help us learn. When we review code, especially when we’re under pressure, we could rush things and make mistakes or oversights. Fortunately, there’s a tool that can review the code for us…. Read more »

Automatic Screenshots With fastlane snapshot

There’s a lot of boring tasks that you can automate in your development career. Taking screenshots is definitely one of them. fastlane comes bundled with a nice little tool that makes this very simple. In this article we’ll go over setting up your project to use fastlane snapshot. Before You… Read more »

Simple Code Signing With match

      2 Comments on Simple Code Signing With match

If you ever worked in a team you know how messy certificates and provisioning profiles can get. Lately Xcode mitigates most of these age-old problems, but there’s one little tool that brings a whole different concept to managing certificates and provisioning profiles. In this article we’ll learn how to manage… Read more »

Continuous Integration: Travis CI

      No Comments on Continuous Integration: Travis CI

Travis is a cloud-based continuous integration server that works really well. It’s quite well-known in the open source community because it’s free for open source projects and it integrates perfectly with GitHub. In this short post, I’ll go over how to set up Travis for your open source project. I’ll… Read more »