From e45d62f76ba8caff1e5031b3db7fe8b0e29ccaab Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Sat, 27 Jan 2024 12:02:03 -0800 Subject: [PATCH] Use Coveralls Github Action to send data to coveralls again This was lost when Travis stopped working, so our coveralls data is frozen in 2021. This should get it working again using https://github.com/marketplace/actions/coveralls-github-action if I got it right. Signed-off-by: Adam Williamson --- .github/workflows/tox.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 8c6c214..0b156da 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -37,3 +37,7 @@ jobs: pip install tox tox-gh-actions - name: Test with tox run: tox + - name: Produce coverage.lcov for coveralls + run: coverage lcov + - name: Coveralls + uses: coverallsapp/github-action@v2