mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-01-26 18:12:47 +08:00
✨ 更新 GitHub Actions 工作流,支持多个 Python 版本的测试
This commit is contained in:
parent
f9186e85bd
commit
115a817984
5
.github/workflows/pre-commit.yml
vendored
5
.github/workflows/pre-commit.yml
vendored
@ -5,6 +5,9 @@ on: [push, pull_request]
|
||||
jobs:
|
||||
pre-commit:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.10', '3.11', '3.12', '3.13'] # 添加你想要测试的 Python 版本
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
@ -13,7 +16,7 @@ jobs:
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: '3.10' # 选择适合你的项目的 Python 版本
|
||||
python-version: ${{ matrix.python-version }} # 使用矩阵中的 Python 版本
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
18
.github/workflows/run-pytest.yml
vendored
18
.github/workflows/run-pytest.yml
vendored
@ -1,4 +1,4 @@
|
||||
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
||||
# This workflow will install Python dependencies, run tests and lint with multiple versions of Python
|
||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
|
||||
|
||||
name: Pytest API Testing
|
||||
@ -13,16 +13,20 @@ permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
Pytes-API-Testing:
|
||||
|
||||
Pytest:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.10', '3.11', '3.12', '3.13'] # 添加你想要测试的 Python 版本
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python 3.11
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: "3.11"
|
||||
python-version: ${{ matrix.python-version }} # 使用矩阵中的 Python 版本
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
@ -36,11 +40,11 @@ jobs:
|
||||
- name: Archive Pytest test report
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: SuperTest-test-report
|
||||
name: SuperTest-test-report-${{ matrix.python-version }}
|
||||
path: report
|
||||
|
||||
- name: Upload Pytest report to GitHub
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Pytest-test-report
|
||||
name: Pytest-test-report-${{ matrix.python-version }}
|
||||
path: report
|
Loading…
x
Reference in New Issue
Block a user