Skip to content

Bump requests from 2.31.0 to 2.32.1 #25

Bump requests from 2.31.0 to 2.32.1

Bump requests from 2.31.0 to 2.32.1 #25

Workflow file for this run

name: Python
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
name: tox
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade wheel setuptools
pip install tox
pip install -r requirements.txt
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox