From 19e2e1c17cb1cf84290b179024a736ebb6c610b8 Mon Sep 17 00:00:00 2001 From: Gas One Cent <86567384+gas1cent@users.noreply.github.com> Date: Tue, 2 Jul 2024 17:38:07 +0400 Subject: [PATCH] feat: improve unit tests filtering in coverage action --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4de736df..7405c598 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -29,7 +29,7 @@ jobs: - name: Run coverage shell: bash - run: forge coverage --report summary --report lcov --match-contract Unit + run: forge coverage --report summary --report lcov --match-path 'test/unit/*' - name: Setup LCOV uses: hrishikesh-kadam/setup-lcov@v1