Bump fastapi from 0.97.0 to 0.100.1 #140
Workflow file for this run
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
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: Install venv | |
run: make install_venv | |
- name: Lint with black | |
run: make check_format | |
- name: Start service | |
run: make start_detached | |
- name: Check API ready | |
uses: emilioschepis/[email protected] | |
with: | |
url: http://localhost:5051/info | |
method: GET | |
expected-status: 200 | |
timeout: 60000 | |
interval: 500 | |
- name: Test with unittest | |
run: make test |