Skip to content

Bump urllib3 from 1.26.5 to 1.26.18 #177

Bump urllib3 from 1.26.5 to 1.26.18

Bump urllib3 from 1.26.5 to 1.26.18 #177

Workflow file for this run

name: Check that code meets requirements
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: run tests
run: |
pytest test