From 77808b7d837da2a1c99f2a7b46213efe04e5f7dd Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 19 Apr 2023 09:27:04 +1000 Subject: [PATCH] WIP: Add toolchain matrix to job --- .github/workflows/rust.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9297ba0..1cd4186 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -105,13 +105,16 @@ jobs: WASM: name: WASM runs-on: ubuntu-latest + strategy: + matrix: + toolchain: [stable, beta, nightly, 1.48.0] steps: - name: Checkout Crate uses: actions/checkout@v3 - name: Install clang run: sudo apt-get install -y clang - name: Checkout Toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@${{ matrix.toolchain }} - name: Running WASM tests env: DO_WASM: true