Skip to content

Bump requests from 2.25.1 to 2.31.0 #51

Bump requests from 2.25.1 to 2.31.0

Bump requests from 2.25.1 to 2.31.0 #51

Workflow file for this run

# This workflow will install tox and run tox for each version of Python defined in the matrix
name: Unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run tox
run: tox -e py