We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd439ff commit 4a616e3Copy full SHA for 4a616e3
.github/workflows/build.yml
@@ -59,10 +59,10 @@ jobs:
59
run: cargo check --release --features uniffi --verbose --color always
60
- name: Test on Rust ${{ matrix.toolchain }}
61
if: "matrix.platform != 'windows-latest'"
62
- run: cargo test
+ run: cargo test -- --nocapture
63
- name: Test with UniFFI support on Rust ${{ matrix.toolchain }}
64
if: "matrix.platform != 'windows-latest' && matrix.build-uniffi"
65
- run: cargo test --features uniffi
+ run: cargo test --features uniffi -- --nocapture
66
- name: Check formatting on Rust ${{ matrix.toolchain }}
67
if: matrix.check-fmt
68
run: rustup component add rustfmt && cargo fmt --all -- --check
0 commit comments