Skip to content

See if RTD builds from a PR v2 #20

See if RTD builds from a PR v2

See if RTD builds from a PR v2 #20

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install .[dev]
- name: Test with pytest
run: |
python -m pytest tests/ --cov --cov-report term-missing