Skip to content

Update readthedocs configuration (#798) #163

Update readthedocs configuration (#798)

Update readthedocs configuration (#798) #163

Workflow file for this run

name: pytest
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python: ['3.10', 3.11, 3.12]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python }}
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests]
- name: Run pytest
run: pytest