Skip to content

chore: Updated project configuration and dependencies #2

chore: Updated project configuration and dependencies

chore: Updated project configuration and dependencies #2

Workflow file for this run

name: Formatter Workflow (Dev)
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11.9
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Configure Poetry
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
poetry config virtualenvs.create false
- name: Install dependencies with Poetry
run: |
poetry install