We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1532fcc commit 9ad7431Copy full SHA for 9ad7431
2 files changed
.github/workflows/test.yml
@@ -40,8 +40,8 @@ jobs:
40
export CARGO_INCREMENTAL=0
41
export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"
42
export RUSTDOCFLAGS="-Cpanic=abort"
43
- cargo build --features full --verbose $CARGO_OPTIONS
44
- cargo test --features full --verbose $CARGO_OPTIONS
+ cargo build --verbose $CARGO_OPTIONS
+ cargo test --verbose $CARGO_OPTIONS
45
zip -0 ccov.zip `find . \( -name "htmlentity*.gc*" \) -print`;
46
./grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore "/*" -o lcov.info;
47
bash <(curl -s https://codecov.io/bash) -f lcov.info;
codecov.yml
@@ -1,2 +1,2 @@
1
ignore:
2
- - src/wasm.rs
+ - src/main.rs
0 commit comments