Skip to content

Merge pull request #89 from rzyu45/main #31

Merge pull request #89 from rzyu45/main

Merge pull request #89 from rzyu45/main #31

Workflow file for this run

name: Run tests
on: [push]
jobs:
built_in_tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- run: |
pip install -r requirements.txt
cd docs/
pip install -r requirements.txt
cd ..
- run: | # run both independent pytest and doctest
pytest -vv