mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-02 09:26:12 +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:
|
install-deps:
|
||||||
description: Install dependencies
|
description: Install dependencies
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: "false"
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
@ -26,6 +26,6 @@ runs:
|
|||||||
enable-cache: true
|
enable-cache: true
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
if: ${{ inputs.install-deps == true }}
|
if: ${{ inputs.install-deps == "true" }}
|
||||||
run: uv sync --frozen
|
run: uv sync --frozen
|
||||||
shell: bash
|
shell: bash
|
||||||
|
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
@ -72,7 +72,7 @@ jobs:
|
|||||||
uses: ./.github/actions/setup-python
|
uses: ./.github/actions/setup-python
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
install-deps: true
|
install-deps: "true"
|
||||||
|
|
||||||
- name: Run Pytest
|
- name: Run Pytest
|
||||||
run: uv run pytest --cov-report xml --cov=./nonebot_bison -k 'not compare and not render' -n auto
|
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
|
uses: ./.github/actions/setup-python
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
install-deps: true
|
install-deps: "true"
|
||||||
|
|
||||||
- name: Run Pytest
|
- name: Run Pytest
|
||||||
run: uv run pytest --cov-report xml --cov=./nonebot_bison -k 'not compare' -n auto
|
run: uv run pytest --cov-report xml --cov=./nonebot_bison -k 'not compare' -n auto
|
||||||
|
Loading…
x
Reference in New Issue
Block a user