Prepare for version 0.3.0 #142
Workflow file for this run
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: Test Notebooks | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test-notebooks: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
notebook: [ | |
"Anomaly-detection.ipynb", | |
"Custom-models.ipynb", | |
"Quantitative-evaluation.ipynb", | |
] | |
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 dtaianomaly + all dependencies | |
- name: Install dtaianomaly | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[all] | |
pip list | |
# Test the notebooks | |
- name: Execute Anomaly detection notebook | |
run: | |
jupyter nbconvert --to notebook --execute notebooks/${{ matrix.notebook }} |