Skip to content

Bump urllib3 from 2.2.1 to 2.2.2 (#709) #1544

Bump urllib3 from 2.2.1 to 2.2.2 (#709)

Bump urllib3 from 2.2.1 to 2.2.2 (#709) #1544

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.11']
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install requirements_test.txt
run: pip install -r requirements_test.txt
- name: flake8
run: flake8 --exclude=src --max-line-length=119
- name: pytest
run: pytest tests