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 4ce9139 commit 30dce98Copy full SHA for 30dce98
.github/workflows/cont_integration.yml
@@ -52,8 +52,10 @@ jobs:
52
if: matrix.rust.version == '1.63.0'
53
run: ./ci/pin-msrv.sh
54
- name: Build + Test
55
+ env:
56
+ MATRIX_RUST_VERSION: ${{ matrix.rust.version }}
57
run: |
- if [ "${{matrix.rust.version}}" = '1.63.0' ]; then
58
+ if [ $MATRIX_RUST_VERSION = '1.63.0' ]; then
59
cargo build --workspace --exclude 'example_*' --exclude 'bdk_electrum' ${{ matrix.features }}
60
cargo test --workspace --exclude 'example_*' --exclude 'bdk_electrum' ${{ matrix.features }}
61
else
0 commit comments