Skip to content

Migrate docs from rst to myst #205

Migrate docs from rst to myst

Migrate docs from rst to myst #205

Workflow file for this run

name: Run Pytest
on:
workflow_dispatch:
push:
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.x' ]
name: pytest ${{ matrix.python-version }}
steps:
- name: Checkout source
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version}}
- name: Install dependencies
run: python -m pip install -e .[test]
- name: Run Pytest
run: pytest