Skip to content

docs: 重写用户使用 README #20

docs: 重写用户使用 README

docs: 重写用户使用 README #20

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
shell: pwsh
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Run tests
shell: pwsh
run: |
python -m pytest tests -q