summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/msrv.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 95f1e0a..68562ba 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -22,6 +22,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
+ minimal: true
override: true
- name: Run cargo check
@@ -56,6 +57,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
+ minimal: true
override: true
- name: Run cargo test
@@ -98,10 +100,9 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
+ minimal: true
override: true
-
- - name: Install rustfmt
- run: rustup component add rustfmt
+ components: rustfmt
- name: Run cargo fmt
uses: actions-rs/cargo@v1
@@ -127,10 +128,9 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
+ minimal: true
override: true
-
- - name: Install clippy
- run: rustup component add clippy
+ components: clippy
- name: Run cargo clippy
uses: actions-rs/cargo@v1
@@ -156,6 +156,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
+ minimal: true
override: true
- name: Run cargo check