14
14
with :
15
15
toolchain : ${{ matrix.rust }}
16
16
components : clippy
17
+ profile : minimal
17
18
- uses : actions/checkout@master
18
19
- name : Check
19
20
run : cargo check --all --bins --examples --tests --benches
@@ -104,6 +105,7 @@ jobs:
104
105
- uses : actions-rs/toolchain@v1
105
106
with :
106
107
toolchain : ${{ matrix.rust }}
108
+ profile : minimal
107
109
- uses : actions/checkout@master
108
110
- name : Build
109
111
run : cargo build
@@ -121,6 +123,7 @@ jobs:
121
123
- uses : actions-rs/toolchain@v1
122
124
with :
123
125
toolchain : stable
126
+ profile : minimal
124
127
- uses : actions/checkout@master
125
128
- name : Build
126
129
run : cargo build
@@ -135,6 +138,7 @@ jobs:
135
138
- uses : actions-rs/toolchain@v1
136
139
with :
137
140
toolchain : stable
141
+ profile : minimal
138
142
- uses : actions/checkout@master
139
143
- name : " Test log support"
140
144
run : (cd tracing/test-log-support && cargo test)
@@ -155,6 +159,7 @@ jobs:
155
159
- uses : actions-rs/toolchain@v1
156
160
with :
157
161
toolchain : nightly
162
+ profile : minimal
158
163
- uses : actions/checkout@master
159
164
- name : " Test tracing-futures std::future support"
160
165
run : (cd tracing-futures/test_std_future && cargo test)
@@ -174,6 +179,7 @@ jobs:
174
179
with :
175
180
toolchain : stable
176
181
components : rustfmt
182
+ profile : minimal
177
183
- uses : actions/checkout@master
178
184
- name : rustfmt
179
185
run : cargo fmt --all -- --check
@@ -186,6 +192,7 @@ jobs:
186
192
- uses : actions-rs/toolchain@v1
187
193
with :
188
194
toolchain : stable
195
+ profile : minimal
189
196
- uses : actions/checkout@master
190
197
- name : warnings
191
198
run : RUSTFLAGS="-Dwarnings" cargo check --all
0 commit comments