From f1857df35fa660146889cc9502d3d3b73c93e368 Mon Sep 17 00:00:00 2001 From: sheldy Date: Fri, 25 Jul 2025 02:45:39 +0200 Subject: [PATCH] Install `signature` dependencies in CI. --- .github/workflows/tests.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7c5292ef..ee3a87ad 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,11 +29,11 @@ jobs: - macos-latest - windows-latest python-version: - - '3.9' - - '3.10' - - '3.11' - - '3.12' - - '3.13' + - "3.9" + - "3.10" + - "3.11" + - "3.12" + - "3.13" defaults: # Windows sucks. Force use bash instead of PowerShell @@ -63,7 +63,7 @@ jobs: - name: Install project dependencies run: | - pip install -e .[dev,test,redis,mongo,proxy,i18n,fast] + pip install -e .[dev,test,redis,mongo,proxy,i18n,fast,signature] - name: Lint code run: | @@ -81,7 +81,7 @@ jobs: if: ${{ env.IS_UBUNTU == 'true' }} uses: supercharge/mongodb-github-action@1.10.0 with: - mongodb-version: '7.0' + mongodb-version: "7.0" mongodb-username: mongo mongodb-password: mongo mongodb-port: 27017 @@ -111,8 +111,8 @@ jobs: - macos-latest # - windows-latest python-version: - - 'pypy3.9' - - 'pypy3.10' + - "pypy3.9" + - "pypy3.10" defaults: # Windows sucks. Force use bash instead of PowerShell @@ -134,7 +134,7 @@ jobs: - name: Install project dependencies run: | - pip install -e .[dev,test,redis,mongo,proxy,i18n,fast] + pip install -e .[dev,test,redis,mongo,proxy,i18n,fast,signature] - name: Run tests run: |