WIP: Add toolchain matrix to job

This commit is contained in:
Tobin C. Harding 2023-04-19 09:27:04 +10:00
parent 141b874e65
commit 77808b7d83
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 4 additions and 1 deletions

View File

@ -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