Description
We are currently (somewhat) following a branch per environment paradigm https://www.wearefine.com/news/insights/env-branching-with-git. Because of this, I’m not entirely sure how we can ever upload a coverage report from Master over to CodeCov. Our workflow (when releasing to production) is something like this:
1). Create Release Branch from Master
2). Merge Develop into Release.
3). Open PR from Release to Master. CI will now build a coverage report and upload Release branch to CodeCov.
4). After passing, push release to master.
How can one ever push a coverage report to CodeCov without resorting to running coverage (again) during the deploy?
CI/CD
Google Cloud Build via bash uploader tool.