This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
Update dependency fastapi to ^0.111.0 #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
pull_request: | |
paths: | |
- 'server/**/*.py' | |
- 'server/pyproject.toml' | |
- 'server/poetry.lock' | |
workflow_dispatch: | |
jobs: | |
quality-checks: | |
runs-on: 'ubuntu-latest' | |
defaults: | |
run: | |
working-directory: 'server' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- uses: Gr1N/setup-poetry@v8 | |
- name: 'Install dependencies' | |
run: 'poetry install' | |
- name: 'Code formatting' | |
run: 'poetry run black --check .' | |
- name: 'PyLint' | |
run: 'poetry run pylint app/' | |
- name: 'Type checking' | |
run: 'poetry run mypy app/' | |
... |