♻️ 全部换成字符串试试

This commit is contained in:
suyiiyii 2024-12-22 21:23:59 +08:00
parent 5bd67ad7ad
commit 99c949691e
Signed by: suyiiyii
GPG Key ID: 044704CB29B8AD85
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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