Test that tutorial runs on latest colab image #48
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 that tutorial runs on latest colab image | |
on: | |
push: | |
schedule: | |
- cron: '0 2 3 * *' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest-4core # increase disk space | |
# https://console.cloud.google.com/artifacts/docker/colab-images/europe/public/runtime | |
container: | |
image: europe-docker.pkg.dev/colab-images/public/runtime:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test tutorials | |
run: | | |
python3 -m pip install papermill ipykernel njab | |
cd docs/tutorial | |
papermill explorative_analysis.ipynb --help-notebook | |
papermill log_reg.ipynb --help-notebook | |
papermill explorative_analysis.ipynb explorative_analysis_tested.ipynb | |
pip install njab heatmapz openpyxl "matplotlib<3.7" plotly | |
papermill log_reg.ipynb log_reg_tested.ipynb |