Bump fastapi from 0.104.1 to 0.109.1 #144
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
name: CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Run image | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: 1.5.1 | |
- name: Install Taskfile | |
uses: arduino/setup-task@v1 | |
with: | |
version: 3.x | |
- name: Install dependencies | |
run: poetry install | |
- name: Lint and format check | |
run: task fmt-check | |
- name: Test coverage with pytest | |
run: task cov | |
- name: Run mypy | |
run: task mypy |