diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml new file mode 100644 index 0000000..75aeba6 --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,14 @@ +name: Test Coverage and Report to Codecov +on: + pull_request: + branches: ["main"] + + +jobs: + codecov: + runs-on: ubuntu-latest + steps: + - name: Upload coverage reports + uses: codecov/codecov-action@v4.5.0 + with: + token: ${{ secrets.CODECOV_TOKEN }}