Skip to content

add py file

add py file #9

Workflow file for this run

name: Pylint
on:
push:
branches:
- main # Adjust this to match your branch name
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install project dependencies
run: poetry install
- name: Analyzing the code with pylint
run: |
poetry run pylint spellchecker_llm/script.py