chore(deps): bump black from 25.9.0 to 25.12.0 #98
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: | |
| pull_request: | |
| branches: | |
| - develop | |
| push: | |
| branches: | |
| - feature/* | |
| - release/* | |
| - hotfix/* | |
| 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'] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| run: pip install uv | |
| - name: Set up environment | |
| run: | | |
| uv venv | |
| source .venv/bin/activate | |
| uv pip install -e .[test,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: | | |
| source .venv/bin/activate | |
| flake8 src/ --max-line-length=88 | |
| black --check src/ --line-length=88 | |
| - name: Run tests | |
| run: | | |
| source .venv/bin/activate | |
| python tests/run_tests.py --all --verbose |