Developer Journal: 09 July 2020

Posted on Thu 09 July 2020 in dev-journal

Spent some time today working with Github actions for the first time. I set up a workflow that allowed me to lint the repo and run the tests on push.

Of course, this meant running my tests for the first time in a different environment and there was 37 tests failing. It made me spend a bit of time doing some code cleanup and refactoring. The biggest problem I ran into was that my config was using a default value based on a file specific to my computer. I was able to generate the necessary data and specify new config values specifically for the testing environment.