Skip to content

chore(deps): bump requests from 2.32.5 to 2.33.0 #225

chore(deps): bump requests from 2.32.5 to 2.33.0

chore(deps): bump requests from 2.32.5 to 2.33.0 #225

Workflow file for this run

name: CI
on: [push, workflow_call]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
include:
- python-version: "3.14"
experimental: true
continue-on-error: ${{ matrix.experimental || false }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Test with pytest
run: uv run pytest tests/