chore: add CODEOWNERS (#100) #481
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: Test Python SDK | |
| on: [ push ] | |
| env: | |
| APPLICATION_KEY: ${{ secrets.APPLICATION_KEY }} | |
| APPLICATION_SECRET: ${{ secrets.APPLICATION_SECRET }} | |
| AUTH_ORIGIN: ${{ secrets.AUTH_ORIGIN }} | |
| CONVERSATION_ORIGIN: ${{ secrets.CONVERSATION_ORIGIN }} | |
| DISABLE_SSL: ${{ secrets.DISABLE_SSL }} | |
| KEY_ID: ${{ secrets.KEY_ID }} | |
| KEY_SECRET: ${{ secrets.KEY_SECRET }} | |
| NUMBERS_ORIGIN: ${{ secrets.NUMBERS_ORIGIN }} | |
| PROJECT_ID: ${{ secrets.PROJECT_ID }} | |
| SERVICE_PLAN_ID: ${{ secrets.SERVICE_PLAN_ID }} | |
| SMS_ORIGIN: ${{ secrets.SMS_ORIGIN }} | |
| TEMPLATES_ORIGIN: ${{ secrets.TEMPLATES_ORIGIN }} | |
| VERIFICATION_ORIGIN: ${{ secrets.VERIFICATION_ORIGIN }} | |
| VOICE_CALL_ID: ${{ secrets.VOICE_CALL_ID }} | |
| VOICE_ORIGIN: ${{ secrets.VOICE_ORIGIN }} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements-dev.txt | |
| - name: Lint with flake8 | |
| run: | | |
| flake8 sinch --count --max-complexity=10 --max-line-length=120 --statistics | |
| - name: Test with Pytest | |
| run: | | |
| coverage run --source=. -m pytest | |
| - name: Coverage Test Report | |
| run: | | |
| python -m coverage report --skip-empty |