diff options
| -rw-r--r-- | .github/workflows/ports_unix.yml | 8 | ||||
| -rw-r--r-- | README.md | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/ports_unix.yml b/.github/workflows/ports_unix.yml index c6ddd5303..ffba437f1 100644 --- a/.github/workflows/ports_unix.yml +++ b/.github/workflows/ports_unix.yml @@ -70,10 +70,12 @@ jobs: mkdir -p coverage lcov --rc lcov_branch_coverage=1 --directory ports/unix/build-coverage --capture --output-file coverage/lcov.info.all lcov --remove coverage/lcov.info.all '*/lib/*' '*/ports/unix/*' '*/utils/*' --output-file coverage/lcov.info - - name: Send to coveralls - uses: coverallsapp/github-action@master + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v1 with: - github-token: ${{ secrets.GITHUB_TOKEN }} + files: coverage/lcov.info + fail_ci_if_error: true + verbose: true - name: Print failures if: failure() run: tests/run-tests.py --print-failures @@ -1,4 +1,4 @@ -[](https://github.com/micropython/micropython/actions?query=branch%3Amaster+event%3Apush) [](https://coveralls.io/r/micropython/micropython?branch=master) +[](https://github.com/micropython/micropython/actions?query=branch%3Amaster+event%3Apush) [](https://codecov.io/gh/micropython/micropython) The MicroPython project ======================= |
