[DES-182] add telegram adapter test suite #37
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 | |
| strategy: | |
| matrix: | |
| python-version: ["3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| - name: Setup Python | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Sync workspace | |
| run: uv sync --all-packages --dev | |
| - name: Ruff check | |
| run: uv run ruff check packages/ | |
| - name: Ruff format check | |
| run: uv run ruff format --check packages/ | |
| - name: Run tests | |
| run: uv run pytest packages/ |