Skip to content

Bump urllib3 from 1.26.14 to 1.26.17 in /flask #131

Bump urllib3 from 1.26.14 to 1.26.17 in /flask

Bump urllib3 from 1.26.14 to 1.26.17 in /flask #131

Workflow file for this run

name: PR Tests
on:
pull_request:
paths-ignore:
- '**/*.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip install tox
- name: Test with tox [fastapi]
working-directory: ./fastapi
run: tox -e py,flake8,black
- name: Test with tox [flask]
working-directory: ./flask
run: tox -e py,flake8,black
- name: Test with tox [python]
working-directory: ./python
run: tox -e py,flake8,black