From ff5ea2fd5b888e089d815ee184cebb3d9b45223d Mon Sep 17 00:00:00 2001 From: Lokathor Date: Thu, 6 Aug 2020 16:20:56 -0600 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 46b74c5..a26f57a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,17 +19,17 @@ jobs: profile: minimal toolchain: ${{ matrix.rust }} default: true - - name: Test The Basics Everywhere + - name: Build the crate on minimal version. uses: actions-rs/cargo@v1 with: - command: test - - name: Test Stable and Later Features + command: build + - name: Test on Stable/Beta if: matrix.rust != '1.34.0' uses: actions-rs/cargo@v1 with: command: test args: --features=alloc --features=grab_spare_slice --features=rustc_1_40 - - name: Test Nightly Features + - name: Test on Nightly with All Features if: matrix.rust == 'nightly' uses: actions-rs/cargo@v1 with: