From 99c949691e58fcc84cbe5036d4ff5fb82413a130 Mon Sep 17 00:00:00 2001 From: suyiiyii Date: Sun, 22 Dec 2024 21:23:59 +0800 Subject: [PATCH] =?UTF-8?q?:recycle:=20=E5=85=A8=E9=83=A8=E6=8D=A2?= =?UTF-8?q?=E6=88=90=E5=AD=97=E7=AC=A6=E4=B8=B2=E8=AF=95=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/setup-python/action.yml | 4 ++-- .github/workflows/main.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup-python/action.yml b/.github/actions/setup-python/action.yml index 68a59dc..da53555 100644 --- a/.github/actions/setup-python/action.yml +++ b/.github/actions/setup-python/action.yml @@ -9,7 +9,7 @@ inputs: install-deps: description: Install dependencies required: false - default: false + default: "false" runs: using: "composite" @@ -26,6 +26,6 @@ runs: enable-cache: true - name: Install dependencies - if: ${{ inputs.install-deps == true }} + if: ${{ inputs.install-deps == "true" }} run: uv sync --frozen shell: bash diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1d4e285..4e6682c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -72,7 +72,7 @@ jobs: uses: ./.github/actions/setup-python with: python-version: ${{ matrix.python-version }} - install-deps: true + install-deps: "true" - name: Run Pytest run: uv run pytest --cov-report xml --cov=./nonebot_bison -k 'not compare and not render' -n auto @@ -104,7 +104,7 @@ jobs: uses: ./.github/actions/setup-python with: python-version: ${{ matrix.python-version }} - install-deps: true + install-deps: "true" - name: Run Pytest run: uv run pytest --cov-report xml --cov=./nonebot_bison -k 'not compare' -n auto