Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/cargo_required.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:

# ---------- TARPAULIN(TEST + COVERAGE) ----------
- name: Run tests under coverage
run: cargo +nightly tarpaulin --skip-clean --out html --verbose --no-dead-code --engine llvm
# The stack size is set to 8MB considering additional stack usage of instrumented code and possible additional consumption due to newer version of toolchain.
run: RUST_MIN_STACK=8388608 cargo +nightly tarpaulin --skip-clean --out html --verbose --no-dead-code --engine llvm

- name: Upload coverage report
uses: actions/upload-artifact@v4
Expand Down
Loading