We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8401223 commit 2aff679Copy full SHA for 2aff679
.github/workflows/release-rust-crates.yml
@@ -56,8 +56,13 @@ jobs:
56
- name: Build
57
run: cargo build --target ${{ matrix.target }} --verbose
58
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
+
63
- name: Run tests
- 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 }}
66
67
# We really only want to publish the eip7594 crate
68
# However, crates.io forces us to publish its dependencies too.
0 commit comments