From b6def3913c5aa34bc80ed46d20d275da63646259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Fri, 16 Aug 2019 01:56:39 +0200 Subject: [PATCH] Check `rustup default` output --- .github/workflows/integration.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 69fb9f4..7846da3 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -7,8 +7,12 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - + rust: [stable, beta, nightly] steps: - uses: hecrj/setup-rust-action@master + with: + rust-version: ${{ matrix.rust }} - name: Check Cargo availability run: cargo --version + - name: Check Rustup default toolchain + run: rustup default | grep '${{ matrix.rust }}'