chore(deps): поднять зависимости до актуальных #36
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: Python CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| # setup-python не нужен: версию питона держит .python-version, и uv сам | |
| # ставит её при первом `uv sync`. Единый источник версии, поэтому раннер | |
| # и образ кита не могут разойтись. | |
| - uses: astral-sh/setup-uv@v10.0.0 | |
| - name: Install | |
| run: make install | |
| - name: Run linter | |
| run: make lint | |
| - name: Run tests | |
| run: make test | |
| - name: Run doctests | |
| run: make doctest |