Skip to content

docs: 添加 CHANGELOG.md 更新日志 #9

docs: 添加 CHANGELOG.md 更新日志

docs: 添加 CHANGELOG.md 更新日志 #9

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
python-version:
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest