Skip to content

Bump requests from 2.31.0 to 2.32.0 #32

Bump requests from 2.31.0 to 2.32.0

Bump requests from 2.31.0 to 2.32.0 #32

Workflow file for this run

name: Tests & Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.7", "3.8", "3.9"]
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 dependencies
run: pip install .[test,dev,lint]
- name: Run pytest and collect coverage
run: pytest --cov=. tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3