Skip to content

Modernize readthedocs configuration #398

Modernize readthedocs configuration

Modernize readthedocs configuration #398

Workflow file for this run

name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: TrueBrain/actions-flake8@v2.2
unittests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python packages
run: |
pip install .[test] pytest-cov
- name: Test with pytest
run: |
pytest --cov=. --cov-report=xml
coverage report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3