From 59091378ffc4a86f9e57162fcee484a7efa1e1c3 Mon Sep 17 00:00:00 2001 From: "Micah D. Gale" Date: Sun, 21 Jan 2024 13:12:26 -0600 Subject: [PATCH] made coveralls own step to avoid 4 coverage reports. --- .github/workflows/main.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fa79551b..f980ee41 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -61,10 +61,18 @@ jobs: with: name: coverage path: coverage.xml + + coveralls: + runs-on: ubuntu-latest + needs: [test] + steps: + - name: Download coverage report + uses: actions/download-artifact@v4 + with: + name: coverage - name: Coveralls GitHub Action uses: coverallsapp/github-action@v2.2.3 - doc-test: runs-on: ubuntu-latest