Merge pull request #520 from deepgram/feat/agent-v1 #246
This file contains hidden or 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 |