From 66c1d1611c279315831d36cb1d2c7c609d1e25fa Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Mon, 5 Aug 2024 11:13:12 +0200 Subject: [PATCH] ci: fix actions --- .github/workflows/build.yml | 4 ++-- .github/workflows/codecov.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bb03547..d5d4415 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,8 +22,8 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable # NB: we have to use either std or alloc here - - run: cargo check --no-default-features --feature std - - run: cargo check --no-default-features --feature alloc + - run: cargo check --no-default-features --features std + - run: cargo check --no-default-features --features alloc features: runs-on: ubuntu-latest strategy: diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 31b4fc5..544c313 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -21,8 +21,8 @@ jobs: - uses: taiki-e/install-action@nextest - name: Collect coverage data (including doctests) run: | - cargo +nightly llvm-cov --no-report nextest - cargo +nightly llvm-cov --no-report --doc + cargo +nightly llvm-cov --no-report nextest --workspace --all-features + cargo +nightly llvm-cov --no-report --doc --workspace --all-features cargo +nightly llvm-cov report --doctests --lcov --output-path lcov.info - name: Upload coverage data to codecov uses: codecov/codecov-action@v4