Delete MaxMinPhaseAllpass_sympy_E1E7E53CFF.ipynb #89
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
# this file was taken from the lecture | |
# Sascha Spors: "Continuous- and Discrete-Time Signals and Systems - Theory and Computational Examples" | |
# see | |
# https://github.com/spatialaudio/signals-and-systems-lecture/blob/master/.github/workflows/notebook_ci.yml | |
# executes all cells (e.g. numerical examples) in all notebooks | |
# by using sphinx with the nbsphinx extension | |
name: Integration Test | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '30 1 1,15 * *' | |
jobs: | |
linux_py311: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- run: sudo apt-get install pandoc | |
- run: pip install -r requirements.txt | |
- run: pip install -r ci/requirements.txt | |
- run: python -m sphinx . _build/ -b html | |
linux_py312: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- run: sudo apt-get install pandoc | |
- run: pip install -r requirements.txt | |
- run: pip install -r ci/requirements.txt | |
- run: python -m sphinx . _build/ -b html |