From d7a974a4d9ebe3f046d3dd55815d252b67d8ce2b Mon Sep 17 00:00:00 2001 From: Jonas Depoix Date: Mon, 11 Nov 2024 11:33:40 +0100 Subject: [PATCH] fixed poe install in ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65d0a18..beddad9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,14 +17,14 @@ jobs: python-version: 3.9 - name: Install dependencies run: | - pip install poetry poe + pip install poetry poethepoet poetry install --only dev - name: Format run: poe ci-format - name: Lint run: poe lint - test: + test-coverage: runs-on: ubuntu-latest strategy: fail-fast: false @@ -39,7 +39,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - pip install poetry poe + pip install poetry poethepoet poetry install --with test - name: Run tests run: |