Skip to content

Merge branch 'merge-med-shifts' into 'main' #19

Merge branch 'merge-med-shifts' into 'main'

Merge branch 'merge-med-shifts' into 'main' #19

Workflow file for this run

name: PyTest
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
python -m ipykernel install --user --name py310
- name: Test library
run: |
python -m pytest -W ignore -m "not slow"
- name: Test docs
run: |
python -m pytest -W ignore --nbmake ./docs