Skip to content

Commit 0f89d12

Browse files
committed
Migrate to BDK wallet
1 parent 3ac44dc commit 0f89d12

File tree

24 files changed

+1254
-1427
lines changed

24 files changed

+1254
-1427
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ on:
55
branches:
66
- master
77
pull_request:
8-
branches:
9-
- master
108

119
defaults:
1210
run:
@@ -87,6 +85,14 @@ jobs:
8785
sudo apt-get install ripgrep
8886
./bin/forbid
8987
88+
- name: Check for blacklist
89+
if: ${{ github.event.pull_request.base.ref == 'master' }}
90+
run: |
91+
if [[ -f blacklist.txt ]]; then
92+
echo "error: found blacklist.txt"
93+
exit 1
94+
fi
95+
9096
test:
9197
strategy:
9298
matrix:
@@ -109,4 +115,9 @@ jobs:
109115
- uses: Swatinem/rust-cache@v2
110116

111117
- name: Test
118+
if: ${{ github.event.pull_request.base.ref == 'master' }}
112119
run: cargo test --all
120+
121+
- name: Test
122+
if: ${{ github.event.pull_request.base.ref == 'bdk' }}
123+
run: ./bin/test

0 commit comments

Comments
 (0)