Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Feature/add ollama (#138) #285

Feature/add ollama (#138)

Feature/add ollama (#138) #285

name: Lint and Format Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "^3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry run python -m pip install --upgrade pip
poetry install
- name: Check static settings
run: |
poetry run black --check .
poetry run isort --check-only --diff .
poetry run flake8 .