We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee3646f commit 6cfd434Copy full SHA for 6cfd434
1 file changed
.github/workflows/rust.yml
@@ -29,6 +29,22 @@ jobs:
29
- name: Run tests (Bitcoin mode, REST+Electrum)
30
run: RUST_LOG=debug cargo test
31
32
+ test-bitcoin-28:
33
+ runs-on: ubuntu-22.04
34
+ steps:
35
+ - run: sudo apt-get update && sudo apt-get install libfuse2
36
+ - uses: actions/checkout@v4
37
+ - uses: dtolnay/rust-toolchain@1.75.0
38
+ - uses: Swatinem/rust-cache@v2
39
+ - name: Download bitcoind 28.0
40
+ run: |
41
+ curl -sSL https://bitcoincore.org/bin/bitcoin-core-28.0/bitcoin-28.0-x86_64-linux-gnu.tar.gz | tar -xz
42
+ chmod +x bitcoin-28.0/bin/bitcoind
43
+ - name: Run tests (Bitcoin 28.0, REST+Electrum)
44
+ run: RUST_LOG=debug cargo test
45
+ env:
46
+ BITCOIND_EXE: ${{ github.workspace }}/bitcoin-28.0/bin/bitcoind
47
+
48
test-electrum-raw:
49
runs-on: ubuntu-22.04
50
steps:
0 commit comments