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 135255cCopy full SHA for 135255c
.github/workflows/cont_integration.yml
@@ -52,8 +52,11 @@ 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
+ rust_version='${MATRIX_RUST_VERSION}'
59
+ if [ $rust_version = '1.63.0' ]; then
60
cargo build --workspace --exclude 'example_*' --exclude 'bdk_electrum' ${{ matrix.features }}
61
cargo test --workspace --exclude 'example_*' --exclude 'bdk_electrum' ${{ matrix.features }}
62
else
0 commit comments