@@ -3,60 +3,60 @@ on: [push, pull_request]
3
3
name : Continuous integration
4
4
5
5
jobs :
6
- tests :
7
- name : Tests
8
- runs-on : ubuntu-latest
9
- strategy :
10
- matrix :
11
- include :
12
- - rust : stable
13
- env :
14
- RUSTFMTCHK : true
15
- - rust : nightly
16
- env :
17
- RUSTFMTCHK : false
18
- - rust : 1.56.1
19
- env :
20
- RUSTFMTCHK : false
21
- steps :
22
- - name : Checkout Crate
23
- uses : actions/checkout@v2
24
- - name : Checkout Toolchain
25
- uses : actions-rs/toolchain@v1
26
- with :
27
- profile : minimal
28
- toolchain : ${{ matrix.rust }}
29
- override : true
30
- - name : Running test script
31
- env : ${{ matrix.env }}
32
- run : ./contrib/test.sh
6
+ tests :
7
+ name : Tests
8
+ runs-on : ubuntu-latest
9
+ strategy :
10
+ matrix :
11
+ include :
12
+ - rust : stable
13
+ env :
14
+ RUSTFMTCHK : true
15
+ - rust : nightly
16
+ env :
17
+ RUSTFMTCHK : false
18
+ - rust : 1.56.1
19
+ env :
20
+ RUSTFMTCHK : false
21
+ steps :
22
+ - name : Checkout Crate
23
+ uses : actions/checkout@v2
24
+ - name : Checkout Toolchain
25
+ uses : actions-rs/toolchain@v1
26
+ with :
27
+ profile : minimal
28
+ toolchain : ${{ matrix.rust }}
29
+ override : true
30
+ - name : Running test script
31
+ env : ${{ matrix.env }}
32
+ run : ./contrib/test.sh
33
33
34
- integrations-tests :
35
- name : Integration Tests
36
- runs-on : ubuntu-latest
37
- strategy :
38
- matrix :
39
- rust : [stable]
40
- bitcoinversion :
41
- [
42
- " 0.18.0" ,
43
- " 0.18.1" ,
44
- " 0.19.0.1" ,
45
- " 0.19.1" ,
46
- " 0.20.0" ,
47
- " 0.20.1" ,
48
- " 0.21.0" ,
49
- ]
50
- steps :
51
- - name : Checkout Crate
52
- uses : actions/checkout@v2
53
- - name : Checkout Toolchain
54
- uses : actions-rs/toolchain@v1
55
- with :
56
- profile : minimal
57
- toolchain : ${{ matrix.rust }}
58
- override : true
59
- - name : Running test script
60
- env :
61
- BITCOINVERSION : ${{ matrix.bitcoinversion }}
62
- run : ./contrib/test.sh
34
+ integrations-tests :
35
+ name : Integration Tests
36
+ runs-on : ubuntu-latest
37
+ strategy :
38
+ matrix :
39
+ rust : [stable]
40
+ bitcoinversion :
41
+ [
42
+ " 0.18.0" ,
43
+ " 0.18.1" ,
44
+ " 0.19.0.1" ,
45
+ " 0.19.1" ,
46
+ " 0.20.0" ,
47
+ " 0.20.1" ,
48
+ " 0.21.0" ,
49
+ ]
50
+ steps :
51
+ - name : Checkout Crate
52
+ uses : actions/checkout@v2
53
+ - name : Checkout Toolchain
54
+ uses : actions-rs/toolchain@v1
55
+ with :
56
+ profile : minimal
57
+ toolchain : ${{ matrix.rust }}
58
+ override : true
59
+ - name : Running test script
60
+ env :
61
+ BITCOINVERSION : ${{ matrix.bitcoinversion }}
62
+ run : ./contrib/test.sh
0 commit comments