Skip to content

added: fastapi-integration library #10

added: fastapi-integration library

added: fastapi-integration library #10

Workflow file for this run

name: Flake8 Lint
on:
push:
branches:
- main
- beta
pull_request:
branches:
- main
- beta
jobs:
flake8-lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: '3.9.16'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8
run: flake8 . --exclude=prompt.py,constant.py