mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-05-31 16:16:11 +08:00
♻️ 全部换成字符串试试
This commit is contained in:
parent
5bd67ad7ad
commit
99c949691e
4
.github/actions/setup-python/action.yml
vendored
4
.github/actions/setup-python/action.yml
vendored
@ -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
|
||||
|
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user