Skip to content

⬆️ Bump fastapi from 0.65.2 to 0.109.1 #89

⬆️ Bump fastapi from 0.65.2 to 0.109.1

⬆️ Bump fastapi from 0.65.2 to 0.109.1 #89

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- 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 .
- name: Lint with flake8
run: |
pip install flake8
# Fail on any warning. The GitHub editor is 127 chars wide
flake8 . --count --max-complexity=10 --max-line-length=127 --statistics --per-file-ignores="__init__.py:F401"
- name: Test with pytest
timeout-minutes: 5
run: |
pip install pytest
python -m pytest -W ignore::DeprecationWarning