Skip to content

Added poetry

Added poetry #33

Workflow file for this run

name: Lint and Auto-Fix Code
on:
push:
pull_request:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9' # Specify the Python version you need
- name: Install Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: '1.2.2' # Specify the Poetry version you need
- name: Install dependencies
run: poetry install
- name: Run pre-commit
run: poetry run pre-commit run --all-files