Skip to content

DOC: Automatic reference doc build update on update to main branch #3

DOC: Automatic reference doc build update on update to main branch

DOC: Automatic reference doc build update on update to main branch #3

Workflow file for this run

name: Pull Request Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: 'pip'
- name: Install dependencies
run: pip install .[tests]
- name: Run pytest
run: pytest