Skip to content

Bump urllib3 from 1.26.17 to 1.26.18 #22

Bump urllib3 from 1.26.17 to 1.26.18

Bump urllib3 from 1.26.17 to 1.26.18 #22

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- name: Check out
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install codecov
pip install coverage
pip install pytest
- name: Test with pytest
run: |
coverage run -m pytest tests
codecov