From ae035a26b29fe65662cbf4f91a2398e06ff1a650 Mon Sep 17 00:00:00 2001 From: Timon Vonk Date: Mon, 21 Oct 2024 14:26:19 +0200 Subject: [PATCH] Also tune actions --- .github/workflows/coverage.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 8334f0b3..2843165e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -33,7 +33,7 @@ jobs: tool: cargo-llvm-cov - name: Generate code coverage run: | - cargo +nightly llvm-cov --workspace --all-features --lcov --output-path lcov.info + cargo +nightly llvm-cov --tests --all-features --lcov --output-path lcov.info - name: Coveralls uses: coverallsapp/github-action@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4fc4c86..8aa18e69 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,11 +35,11 @@ jobs: - name: Check typos uses: crate-ci/typos@master - name: "Rustfmt" - run: cargo fmt --all --check + run: cargo fmt --all --check --workspace - name: Lint dependencies uses: EmbarkStudios/cargo-deny-action@v2 - name: clippy - run: cargo clippy --all-targets --all-features + run: cargo clippy --all-targets --all-features --workspace test: name: Test