From a12e31fbec9c2bdc544d8f321d0660881ed1dac1 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Wed, 10 Apr 2024 09:00:25 -0700 Subject: [PATCH] chore(ci): don't manually install wasm toolchain (#315) This is already specified in the toolchain file, so it needn't be manually installed on CI. --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 206b22a5..ed18eb99 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,8 +43,6 @@ jobs: - uses: actions/checkout@v2 - name: rust toolchain run: rustup show - - name: add wasm target - run: rustup target add wasm32-unknown-unknown - uses: olix0r/cargo-action-fmt@ee1ef42932e44794821dab57ef1bf7a73df8b21f - uses: extractions/setup-just@v1 - name: run just check @@ -62,8 +60,6 @@ jobs: - uses: actions/checkout@v2 - name: rust toolchain run: rustup show - - name: add wasm target - run: rustup target add wasm32-unknown-unknown - uses: olix0r/cargo-action-fmt@ee1ef42932e44794821dab57ef1bf7a73df8b21f - uses: extractions/setup-just@v1 - name: run just clippy