Skip to content

Commit 2aff679

Browse files
committed
separate windows test
1 parent 8401223 commit 2aff679

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release-rust-crates.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,13 @@ jobs:
5656
- name: Build
5757
run: cargo build --target ${{ matrix.target }} --verbose
5858

59+
- name: Run tests (Windows)
60+
if: matrix.target == 'x86_64-pc-windows-gnu'
61+
run: cargo test --target ${{ matrix.target }} -- --test-threads=1
62+
5963
- name: Run tests
60-
run: RUST_BACKTRACE=1 cargo test -p crate_crypto_kzg_multi_open_fk20 --lib -- --nocapture
64+
if: matrix.target != 'x86_64-pc-windows-gnu'
65+
run: cargo test --target ${{ matrix.target }}
6166

6267
# We really only want to publish the eip7594 crate
6368
# However, crates.io forces us to publish its dependencies too.

0 commit comments

Comments
 (0)