Skip to content

install

install #881

Workflow file for this run

name: install
on:
schedule:
- cron: '0 1 * * *'
jobs:
install:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.11', '3.10', '3.9']
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install identity SDK
run: |
python -m pip install tankersdk-identity
python -c 'import tankersdk_identity; tankersdk_identity.create_provisional_identity("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", "email", "[email protected]")'