Skip to content

Bump requests from 2.32.5 to 2.33.0 #71

Bump requests from 2.32.5 to 2.33.0

Bump requests from 2.32.5 to 2.33.0 #71

Workflow file for this run

name: test
on:
push:
branches: master
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
run:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-beta.3']
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: uv run task test