2022-Spring-NYU-DevOps-Shopcarts / shopcarts

Shopcarts squad.
Apache License 2.0
2 stars 2 forks source link

Codecov set up fix #75

Closed TimothyXu closed 2 years ago

TimothyXu commented 2 years ago

Per professor's post in #homework we need to re-setup Codecov in GitHub actions:

'It seems that the authors of the Codecov GitHub Action have some serious bugs that they have been unable to fix for several versions now. My apologies for my repos not having this fix in the example (lab-github-actions did but the others did not), but they do now. You will need to place the following in your GitHub Action to get Codecov to work properly: (notice the "with: version 'v0.1.13'" which is the last version known to work.

- name: Upload code coverage
uses: codecov/codecov-action@v2  
with:
  version: "v0.1.13"  

'