From baa88ccab4527a50e25652edbd9ae7b8081173c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Wed, 24 Jun 2026 22:51:58 +0200 Subject: [PATCH] chore: validate Poetry configuration --- .github/workflows/black.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index 205aa6d..b6517bb 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -1,4 +1,4 @@ -name: Code style +name: Checks on: push: @@ -17,3 +17,17 @@ jobs: with: python-version: '3.x' - uses: psf/black@stable + + poetry-check: + runs-on: ubuntu-latest + + name: Poetry + steps: + - uses: actions/checkout@v7 + - uses: actions/setup-python@v6 + with: + python-version: '3.x' + - run: | + pip install -U pip poetry + poetry install + - run: poetry check --strict