From ada6fdb0cd2a8a14cf21b1f2a40a140429bfed69 Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Sat, 19 Oct 2024 22:10:30 +0200 Subject: [PATCH] Update poetry --- .github/workflows/tests.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d3c7a76..5c32b27 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,18 +10,17 @@ jobs: os: [ubuntu-20.04, macos-12, windows-2019] runs-on: ${{ matrix.os }} steps: - - name: Install Poetry - uses: abatilo/actions-poetry@v2.0.0 - with: - poetry-version: 1.5.1 - - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - cache: 'poetry' - - name: Install Dependencies + - name: Install Poetry + uses: abatilo/actions-poetry@v2.0.0 + with: + poetry-version: 1.8.4 + + - name: Install Dependencies (Pure Python) run: poetry install --without dev,docs - name: Run Tests (Pure Python with coverage)