Skip to content

Bump fastapi from 0.63.0 to 0.109.1 #72

Bump fastapi from 0.63.0 to 0.109.1

Bump fastapi from 0.63.0 to 0.109.1 #72

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
poetry-version: [1.1.4]
os: [ubuntu-18.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: install project dependencies
run: |
poetry install
- name: Lint black
run: ./scripts/check-black.sh
- name: Lint flake 8
run: ./scripts/check-flake8.sh
- name: Check Mypy
run: ./scripts/check-mypy.sh
- name: Lint isort
run: ./scripts/check-isort.sh
- name: Run tests
run: ./scripts/run-tests.sh