ci: poetry install dependecies
Some checks failed
Build Python Package / build (push) Failing after 35s

This commit is contained in:
2025-02-04 02:13:21 +01:00
parent acfe410a69
commit f5e155cddb

View File

@@ -26,6 +26,18 @@ jobs:
virtualenvs-create: false
installer-parallel: true
- name: Validate the structure of the pyproject.toml
run: |
poetry check
- name: Verify that poetry.lock is consistent with pyproject.toml
run: |
poetry lock --check
- name: Install dependencies
run: |
poetry install
- name: Check code formatting by black
run: |
poetry run black . --check