diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 532a7c1e7..e06cdda7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,6 +68,12 @@ jobs: with: rust-version: 1.44.0 + - name: Install rust targets + run: | + # Necessary for the std/wasi tests + rustup target add wasm32-unknown-unknown + rustup target add wasm32-wasi + - name: Install clippy and rustfmt if: matrix.config.kind == 'lint' run: | |