This commit is contained in:
DaniPopes 2023-02-24 21:03:20 +01:00
parent f805e8a0f5
commit 362de60dd1
No known key found for this signature in database
GPG Key ID: 0F09640DDB7AC692
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ echo "Installing Geth"
PLATFORM="$(uname -s)"
case "$PLATFORM" in
Linux|Darwin)
platform="$(echo "$PLATFORM" | awk "{print tolower($0)}")"
platform="$(echo "$PLATFORM" | awk '{print tolower($0)}')"
GETH_ARCHIVE_NAME="geth-$platform-amd64-$GETH_BUILD"
curl "https://gethstore.blob.core.windows.net/builds/$GETH_ARCHIVE_NAME.tar.gz" | tar -xzvf -
mv -f "$GETH_ARCHIVE_NAME/geth" ./

View File

@ -157,9 +157,9 @@ jobs:
with:
cache-on-failure: true
- name: Check
run: rustup run wasm32-unknown-unknown cargo check --workspace
run: rustup run stable-wasm32-unknown-unknown cargo check --workspace
- name: Check all features
run: rustup run wasm32-unknown-unknown cargo check --workspace --all-features
run: rustup run stable-wasm32-unknown-unknown cargo check --workspace --all-features
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh