Skip to content

Expand on the upstream type changes #170

Expand on the upstream type changes

Expand on the upstream type changes #170

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Python Poetry Action
uses: abatilo/[email protected]
with:
poetry-version: '1.5.1'
- name: Install dependencies
run: poetry install --with lint --with tests
- uses: pre-commit/[email protected]
- name: Test with pytest
run: |
poetry run pytest
- name: Test readme notebook
run: |
poetry install --with readme
poetry run jupyter nbconvert --to markdown README.ipynb
- name: Test docs build
run: |
poetry run mkdocs build