Compare commits

...

1 Commits

Author SHA1 Message Date
91095ed2cc ci: switch tarpaulin output to lcov format 2025-07-28 18:28:43 -05:00
2 changed files with 4 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ jobs:
uses: pyodide/setup-emsdk@v15
with:
version: 3.1.43
actions-cache-folder: "emsdk-cache"
actions-cache-folder: "emsdk-cache-b"
- name: Setup Rust (WASM32 Emscripten)
uses: dtolnay/rust-toolchain@master

View File

@@ -47,12 +47,13 @@ jobs:
- name: Generate coverage report
run: |
cargo tarpaulin \
--out Html \
--out Lcov \
--output-dir coverage \
--rustflags="-C link-arg=-lz"
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2
with:
files: ./coverage/tarpaulin-report.html
files: ./coverage/lcov.info
format: lcov
allow-empty: false