We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03cb174 commit 2fd52a6Copy full SHA for 2fd52a6
.github/workflows/hardhat-core-ci.yml
@@ -282,18 +282,26 @@ jobs:
282
steps:
283
- uses: actions/checkout@v3
284
285
+ - name: Install nightly rustfmt
286
+ uses: actions-rs/toolchain@v1
287
+ with:
288
+ toolchain: nightly
289
+ profile: minimal
290
+ components: rustfmt
291
+
292
- name: Install stable toolchain
293
uses: actions-rs/toolchain@v1
294
with:
295
profile: minimal
296
override: true
- components: clippy, rustfmt
297
+ components: clippy
298
299
- uses: Swatinem/rust-cache@v2
300
301
- name: Run cargo fmt
302
uses: actions-rs/cargo@v1
303
304
305
command: fmt
306
args: --all --check
307
0 commit comments