Skip to content

Commit 41c457e

Browse files
committed
CI: Reduce indentation
Make the indentation like it is in other repositories in this org. Done in preparation for further patching of the workflow. Whitespace only.
1 parent f19c1b5 commit 41c457e

File tree

1 file changed

+56
-56
lines changed

1 file changed

+56
-56
lines changed

.github/workflows/rust.yml

+56-56
Original file line numberDiff line numberDiff line change
@@ -3,60 +3,60 @@ on: [push, pull_request]
33
name: Continuous integration
44

55
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
3333

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

Comments
 (0)