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