We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b91450 commit 0c677d4Copy full SHA for 0c677d4
.github/workflows/build.yml
@@ -15,7 +15,9 @@ jobs:
15
# 1.45.2 is MSRV for lightning-net-tokio, lightning-block-sync, lightning-background-processor
16
1.45.2,
17
# 1.47.0 will be the MSRV for no-std builds using hashbrown once core2 is updated
18
- 1.47.0]
+ 1.47.0,
19
+ # 1.57.0 is the MSRV for lightning-transaction-sync
20
+ 1.57.0]
21
include:
22
- toolchain: stable
23
build-net-tokio: true
@@ -67,6 +69,11 @@ jobs:
67
69
build-futures: true
68
70
build-no-std: true
71
build-tx-sync: false
72
+ - toolchain: 1.57.0
73
+ build-net-tokio: false
74
+ build-no-std: false
75
+ build-futures: false
76
+ build-tx-sync: true
77
runs-on: ${{ matrix.platform }}
78
steps:
79
- name: Checkout source code
0 commit comments