Fetch Issues from GitHub
Understand the idea of GitHub issues and how they’re fetched and passed through the code process.
We'll cover the following...
We’ll want to organize our source code, write tests, and handle any dependencies. And we’ll want to follow Elixir conventions because that way, we’ll get support from the tools.
In this chapter, we’ll look at Mix (often mix
in code), the Elixir build tool. We’ll investigate the directory structure it uses and see how to manage external dependencies. We’ll end up using ExUnit
to write tests for our code and to validate the examples in our code’s documentation. To motivate this, we’ll ...