Trigger WSClient Disconnect When WS Connection Closed #182
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - Build SDK | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Dependencies | |
run: pip install . | |
#- name: Run Tests | |
# run: pytest tests/ | |
- name: Check SDK Setup | |
run: python -m pip install --upgrade build | |
- name: Build SDK | |
run: python -m build |