docs: 修复文档中的 zhlint 错误并增加 GitHub Workflow (#156) #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- '**.py' | |
- '!docs/**' | |
- '!examples/**' | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
concurrency: | |
group: test-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
fail-fast: false | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: ./.github/actions/setup-python | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run pytest | |
run: uv run pytest -n auto --cov-report xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
env_vars: OS,PYTHON_VERSION | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
flags: unittests | |
token: ${{ secrets.CODECOV_TOKEN }} |