Skip to content

Add automated documentation rendering of the wxflow API #21

Add automated documentation rendering of the wxflow API

Add automated documentation rendering of the wxflow API #21

Workflow file for this run

name: pytests
on: [push, pull_request]
jobs:
run_pytests:
runs-on: ubuntu-latest
name: Install wxflow and run tests with pytests
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install (upgrade) python dependencies
run: |
pip install --upgrade pip
- name: Checkout
uses: actions/checkout@v3
- name: Install wxflow
run: |
cd $GITHUB_WORKSPACE
pip install .[dev]
- name: Run pytests
run: |
cd $GITHUB_WORKSPACE
pytest -v