We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a8b7a commit db144d9Copy full SHA for db144d9
.github/workflows/build.yml
@@ -6,6 +6,7 @@ jobs:
6
build:
7
strategy:
8
matrix:
9
+ platform: [ ubuntu-latest ]
10
toolchain: [ stable,
11
beta,
12
# 1.30.0 is MSRV for Rust-Lightning
@@ -17,12 +18,18 @@ jobs:
17
18
include:
19
- toolchain: stable
20
build-net-tokio: true
21
+ - toolchain: stable
22
+ platform: macos-latest
23
+ build-net-tokio: true
24
25
+ platform: windows-latest
26
27
- toolchain: beta
28
29
- toolchain: 1.39.0
30
31
coverage: true
- runs-on: ubuntu-latest
32
+ runs-on: ${{ matrix.platform }}
33
steps:
34
- name: Checkout source code
35
uses: actions/checkout@v2
0 commit comments