From 2b4f1a2f5bf9fe0502c33b812b25414b07e28c08 Mon Sep 17 00:00:00 2001 From: Andrew Srg Date: Fri, 8 Mar 2024 21:37:05 +0200 Subject: [PATCH] feature: add codecov step to github actions pipeline --- .github/workflows/tests.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index b0157b5..c533c03 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -49,4 +49,9 @@ jobs: pip install -e .[ci-tests] - name: Test with pytest run: | - pytest tests + pytest tests --cov + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4.0.1 + with: + token: ${{ secrets.CODECOV_TOKEN }} + slug: AndrewSergienko/costy