Skip to content

Update to current Python versions. #2

Update to current Python versions.

Update to current Python versions. #2

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
pytest:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest
run: |
python -m pip install tox
python -m tox -e py
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Run sphinx
run: |
python -m pip install tox
python -m tox -e docs
linkcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Run sphinx
run: |
python -m pip install tox
python -m tox -e linkcheck