Skip to content

chore: 发布 0.9.0 #18

chore: 发布 0.9.0

chore: 发布 0.9.0 #18

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.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
env:
OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- uses: pdm-project/setup-pdm@v3
name: Setup PDM
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install -G dev -G test
- name: Run pytest
run: pdm run pytest -n auto --cov-report xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
env_vars: OS,PYTHON_VERSION
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests