Standardize Inkbox plugin behavior + shared iMessage-line calling, identity-scoped call config, external webhook injection #12
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| # inkbox is mocked in the tests, so install only what they import. | |
| - name: Install test deps | |
| run: pip install pytest aiohttp segno | |
| - name: Test | |
| run: pytest -q |