Skip to content

Bump requests from 2.32.5 to 2.33.0 in /docs in the pip group across 1 directory #92

Bump requests from 2.32.5 to 2.33.0 in /docs in the pip group across 1 directory

Bump requests from 2.32.5 to 2.33.0 in /docs in the pip group across 1 directory #92

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.10"
env:
TOXENV: "msgpack"
- python-version: "3.10"
env:
TOXENV: "json"
- python-version: "3.11"
env:
TOXENV: "msgpack"
- python-version: "3.11"
env:
TOXENV: "json"
- python-version: "3.12"
env:
TOXENV: "msgpack"
- python-version: "3.12"
env:
TOXENV: "json"
- python-version: "3.13"
env:
TOXENV: "msgpack"
- python-version: "3.13"
env:
TOXENV: "json"
# Keep in sync with pyproject.toml's
# tool.sphinx-scrapy.python-version.
- python-version: "3.14"
env:
TOXENV: "docs"
# https://github.com/kevin1024/vcrpy/issues/885
# - python-version: "pypy3.11-v7.3.20"
# env:
# TOXENV: "msgpack"
# - python-version: "pypy3.11-v7.3.20"
# env:
# TOXENV: "json"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
env: ${{ matrix.env }}
run: |
pip install -U tox
tox
- name: Upload to codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}