72 default window size (#74) #103
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doctest | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
doctest: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the repository code | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Set up Python | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' # Only for one python version to save on resources | |
# Install dependencies | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
pip list | |
# Change the directory to the docs directory. | |
- name: Go to docs | |
run: | | |
cd docs | |
# Do the doctest | |
- name: Doctest | |
run: | | |
cd docs | |
make doctest |