I've recently implemented Codecov to help me track the code coverage for my unit tests. This tool allows me to see how much of my code is being tested. To integrate Codecov into my development workflow I've set up a CI pipeline using Github actions. Whenever I push my code to Github, the pipeline runs my unit tests and uploads the coverage report to Codecov. Right now my code coverage is at 12% so... Read more