chore: bump version to v2.9.0 #558
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: | |
| pull_request: | |
| branches: | |
| - develop | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: # 👈 allows manual run from GitHub UI | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 | |
| - name: Set up environment | |
| run: | | |
| uv sync --locked --extra test --extra dev | |
| - name: Generate test SSL certificates | |
| run: | | |
| chmod +x tests/fixtures/ssl/generate-test-certs.sh | |
| tests/fixtures/ssl/generate-test-certs.sh | |
| - name: Run code quality checks | |
| run: | | |
| uv run flake8 src/ --max-line-length=88 | |
| uv run black --check src/ --line-length=88 | |
| - name: Run tests | |
| run: | | |
| uv run pytest -m "not integration" tests/ |