From 5921eedefd84e02b54a5b355a3ef75e4d6d61ba6 Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Thu, 26 Jan 2023 14:22:08 +0100 Subject: [PATCH] CI: Importing aleph.sdk after installation --- .github/workflows/build-wheels.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index cf0bfdff..e30baade 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -38,3 +38,8 @@ jobs: - name: Install the Python wheel run: | python3 -m pip install dist/aleph_sdk_python-*.whl + + - name: Import and use the package + run: | + python3 -c "import aleph.sdk" + python3 -c "from aleph.sdk.chains.ethereum import get_fallback_account; get_fallback_account()"