[pre-commit.ci] pre-commit autoupdate #537
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: PyPI Tests | |
on: | |
push: | |
branches: ['main'] | |
paths-ignore: ['**.md', 'docs/**'] | |
pull_request: | |
paths-ignore: ['**.md', 'docs/**'] | |
workflow_dispatch: | |
concurrency: | |
group: 'pypi-tests-${{ github.head_ref || github.run_id }}' | |
cancel-in-progress: true | |
jobs: | |
pytest: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
runs-on: ${{matrix.platform}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: setup Python ${{matrix.python-version}} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{matrix.python-version}} | |
- name: install | |
run: | | |
python3 -m pip install pip wheel | |
python3 -m pip install -q --no-cache-dir -e .[complete] | |
python3 -m pip list | |
- name: test | |
run: | | |
python3 -m pytest | |
doctest: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install | |
run: | | |
python3 -m pip install pip wheel | |
python3 -m pip install -q --no-cache-dir -e .[complete] | |
python3 -m pip list | |
- name: Run doctests | |
shell: bash -l {0} | |
run: | | |
python3 -m pytest -v --doctest-modules --ignore-glob='tests/test_*.py' src docs/examples.rst | |
mindeps: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install | |
run: | | |
python3 -m pip install pip wheel pytest | |
python3 -m pip install -q --no-cache-dir -e . | |
python3 -m pip list | |
- name: Run tests | |
shell: bash -l {0} | |
run: | | |
python3 -m pytest |