Skip to content

chore: 更新 GitHub Workflows (#153) #116

chore: 更新 GitHub Workflows (#153)

chore: 更新 GitHub Workflows (#153) #116

Workflow file for this run

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 }}