Revert "WIP: Add toolchain matrix to job"

This reverts commit 77808b7d83.

dtolnay/rust-toolchain does not support using a matrix as far as I can
tell. Since the PR brief description contains "WIP" it looks like the
original author (me) was testing this using CI, no idea how this patch
got merged.
This commit is contained in:
Tobin C. Harding 2023-07-13 09:06:01 +10:00
parent e6643c083d
commit 567c39c7f1
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 4 deletions

View File

@ -105,16 +105,13 @@ jobs:
WASM: WASM:
name: WASM name: WASM
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [stable, beta, nightly, 1.48.0]
steps: steps:
- name: Checkout Crate - name: Checkout Crate
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install clang - name: Install clang
run: sudo apt-get install -y clang run: sudo apt-get install -y clang
- name: Checkout Toolchain - name: Checkout Toolchain
uses: dtolnay/rust-toolchain@${{ matrix.toolchain }} uses: dtolnay/rust-toolchain@stable
- name: Running WASM tests - name: Running WASM tests
env: env:
DO_WASM: true DO_WASM: true