We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b33b37 commit e7f6b5fCopy full SHA for e7f6b5f
.github/workflows/build-wheels.yml
@@ -38,3 +38,10 @@ jobs:
38
- name: Install the Python wheel
39
run: |
40
python3 -m pip install dist/aleph_sdk_python-*.whl
41
+
42
+ - name: Import and use the package
43
+ # macos tests fail this step because they use Python 3.11, which is not yet supported by our dependencies
44
+ if: startsWith(matrix.os, 'ubuntu-')
45
+ run: |
46
+ python3 -c "import aleph.sdk"
47
+ python3 -c "from aleph.sdk.chains.ethereum import get_fallback_account; get_fallback_account()"
0 commit comments