Skip to content

update pkgs

update pkgs #13

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 --rcfile=.pylintrc spellchecker_llm/script.py