File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ Run from `rust.yml` unless stated otherwise. Total 11 jobs.
22
22
8 . ` Docs `
23
23
9 . ` Docsrs `
24
24
10 . ` Format `
25
+ 11 . ` Verify `
25
26
26
27
+15 jobs - 1 for each supported version of Core.
27
28
Original file line number Diff line number Diff line change @@ -188,6 +188,20 @@ jobs:
188
188
- name : " Check formatting"
189
189
run : cargo fmt --all -- --check
190
190
191
+ Verify : # 1 job, run `verify` directly.
192
+ name : Verify - stable toolchain
193
+ runs-on : ubuntu-latest
194
+ strategy :
195
+ fail-fast : false
196
+ steps :
197
+ - name : " Checkout repo"
198
+ uses : actions/checkout@v4
199
+ - name : " Select toolchain"
200
+ uses : dtolnay/rust-toolchain@stable
201
+ - name : " Run the verify program"
202
+ # Verify all versions (known to the verify program)
203
+ run : cd verify && cargo run all
204
+
191
205
Integration : # 1 job for each bitcoind version we support.
192
206
name : Integration tests - stable toolchain
193
207
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments