From f040b4c7cdaeda9413e23529f6befa4e7731e4e3 Mon Sep 17 00:00:00 2001 From: Carson Date: Wed, 11 Dec 2024 16:31:17 -0600 Subject: [PATCH] Install all the extras --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24ed909..1baa3fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: environment: name: pypi url: https://pypi.org/project/chatlas/ - + permissions: # for trusted publishing id-token: write @@ -34,7 +34,7 @@ jobs: run: uv python install ${{ env.PYTHON_VERSION }} - name: 📦 Install the project - run: uv sync --python ${{ env.PYTHON_VERSION }} --no-dev --extra test + run: uv sync --python ${{ env.PYTHON_VERSION }} --all-extras - name: 🧪 Check tests run: make check-tests