File tree Expand file tree Collapse file tree 1 file changed +3
-21
lines changed Expand file tree Collapse file tree 1 file changed +3
-21
lines changed Original file line number Diff line number Diff line change 6
6
check :
7
7
name : Check
8
8
runs-on : ubuntu-latest
9
- strategy :
10
- matrix :
11
- rust :
12
- - 1.70.0
13
-
14
9
steps :
15
10
- name : Checkout sources
16
11
17
12
18
13
- name : Install toolchain
19
14
uses : dtolnay/rust-toolchain@master
20
15
with :
21
- toolchain : ${{ matrix.rust }}
16
+ toolchain : 1.70.0
22
17
23
18
- name : Cache
24
19
uses : Swatinem/rust-cache@v2
@@ -48,18 +43,14 @@ jobs:
48
43
needs : [check]
49
44
name : Rustfmt
50
45
runs-on : ubuntu-latest
51
- strategy :
52
- matrix :
53
- rust :
54
- - 1.70.0
55
46
steps :
56
47
- name : Checkout sources
57
48
58
49
59
50
- name : Install toolchain
60
51
uses : dtolnay/rust-toolchain@master
61
52
with :
62
- toolchain : ${{ matrix.rust }}
53
+ toolchain : 1.70.0
63
54
components : rustfmt
64
55
65
56
- name : Run cargo fmt
@@ -70,23 +61,14 @@ jobs:
70
61
needs : [check]
71
62
name : Clippy
72
63
runs-on : ubuntu-latest
73
- strategy :
74
- matrix :
75
- rust :
76
- # We run clippy only with our MSRV
77
- # Running newer clippy (or even from the current stable channel) would
78
- # randomly "break" our CI when the toolchain gets published in a new
79
- # version. So there's no point in running it with two or more
80
- # versions, MSRV should be fine.
81
- - 1.70.0
82
64
steps :
83
65
- name : Checkout sources
84
66
85
67
86
68
- name : Install toolchain
87
69
uses : dtolnay/rust-toolchain@master
88
70
with :
89
- toolchain : ${{ matrix.rust }}
71
+ toolchain : 1.70.0
90
72
components : clippy
91
73
92
74
- name : Cache
You can’t perform that action at this time.
0 commit comments