Skip to content

chore(deps): bump actions/setup-python from 6.2.0 to 6.3.0 #482

chore(deps): bump actions/setup-python from 6.2.0 to 6.3.0

chore(deps): bump actions/setup-python from 6.2.0 to 6.3.0 #482

Workflow file for this run

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']
fail-fast: false
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # 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/