From b25517a6c4c467ea269f6810b55301e73c210695 Mon Sep 17 00:00:00 2001 From: hasansezertasan Date: Sun, 26 May 2024 10:15:04 +0300 Subject: [PATCH] Add "Run Coverage" step to `ci.yml` workflow. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a82afa5..f5735e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,8 @@ jobs: run: hatch run types:all - name: Run Tests run: hatch test -a + - name: Run Coverage + run: hatch test --cover - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1 with: