Bump requests from 2.31.0 to 2.32.2 #200
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.8, 3.9, "3.10", "3.11", "pypy3.8", "pypy3.9", "pypy3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade -r requirements-dev.txt | |
pip install . | |
- name: Run tests | |
run: | | |
py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term | |
if which mypy; then mypy injector ; fi | |
if which black; then black --check . ; fi | |
check-manifest | |
- name: Report coverage to Codecov | |
uses: codecov/codecov-action@v1 |