diff options
| author | Damien George <damien@micropython.org> | 2021-06-25 12:01:46 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-06-25 16:17:54 +1000 |
| commit | c940597314e504e1e3d59bfb6f6e667c9708ba79 (patch) | |
| tree | def58a9a88860c4fa3d9defe69ecafa9b79f47fc | |
| parent | 30422ca7c24f02ea34fdbc61466d5fb4baa0af8a (diff) | |
github/workflows: Switch from Coveralls to Codecov.
As discussed in #7455, Coveralls doesn't work properly anymore, it has
many spurious errors with reduced coverage.
Signed-off-by: Damien George <damien@micropython.org>
| -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 ======================= |
