From 309084f8a6a0bcea82a3b1e1609be41e649486dd Mon Sep 17 00:00:00 2001 From: Joao Duarte Date: Tue, 31 Oct 2023 08:59:45 -0300 Subject: [PATCH] ci: Add coverage collection configuration --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9155ff9..db4f697 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,10 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: stable - - uses: actions-rs/cargo@v1 + profile: minimal + toolchain: nightly + components: llvm-tools-preview + - uses: Swatinem/fucov@v1 + - uses: codecov/codecov-action@v1 with: - command: test - args: --all-features \ No newline at end of file + directory: coverage