From d3e50949660ffcd70f206e10238e8db6c8224915 Mon Sep 17 00:00:00 2001 From: TimeTravelPenguin Date: Thu, 4 Jan 2024 22:38:45 +1100 Subject: [PATCH] Squashed commit of the following: commit 4a17e5dce3c9dd379745c2eebf41dc1080dbf14e Merge: 1fc7702 5280ebb Author: TimeTravelPenguin Date: Thu Jan 4 22:37:04 2024 +1100 Merge branch 'rich-progress-bar' of https://github.com/TimeTravelPenguin/BulkAudioExtractTool into rich-progress-bar commit 1fc770238dea6fe244a3f6d651eea1ad4d3a3c6b Author: TimeTravelPenguin Date: Thu Jan 4 22:28:33 2024 +1100 Corrected tests --- .github/workflows/CI.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4dce905..771d613 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,14 +31,16 @@ jobs: - name: Check out repository uses: actions/checkout@v3 - - name: Install Poetry - uses: snok/install-poetry@v1 - - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - cache: "poetry" + + - name: Install Poetry + uses: snok/install-poetry@v1 + with: + virtualenvs-create: true + virtualenvs-in-project: true #- name: Setup macOS PATH # if: runner.os == 'macOS' @@ -49,7 +51,7 @@ jobs: id: cached-poetry-dependencies uses: actions/cache@v3 with: - path: .venv + path: ~/.cache key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies