From 04a087d7e665e3e4aeb265844fd016ee5795989a Mon Sep 17 00:00:00 2001 From: Steven Enamakel Date: Sat, 8 Aug 2026 23:02:46 +0300 Subject: [PATCH] ci: enforce 90 percent line coverage Co-authored-by: Medulla --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4db6e08..4aee246 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,3 +50,9 @@ jobs: - name: Test all features run: cargo test --all-features + + - name: Coverage gate + uses: taiki-e/install-action@cargo-llvm-cov + + - name: Verify line coverage + run: cargo llvm-cov --all-features --workspace --fail-under-lines 90