Skip to content

Bump requests from 2.31.0 to 2.32.0 #412

Bump requests from 2.31.0 to 2.32.0

Bump requests from 2.31.0 to 2.32.0 #412

name: Run Tests
on:
pull_request:
push:
branches: main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install tox
- name: Test with tox
run: tox -e py,flake8,black,mypy