-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Henry
committed
May 30, 2024
1 parent
cac23b2
commit c5c1335
Showing
3 changed files
with
40 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Test that tutorial runs on latest colab image | ||
|
||
on: | ||
push: | ||
branches: [dev] | ||
pull_request: | ||
branches: [main] | ||
schedule: | ||
- cron: '0 2 3 * *' | ||
|
||
jobs: | ||
test-tutorial-on-colab: | ||
name: Test tutorial on latest colab image | ||
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: Install pimms-learn and papermill | ||
run: | | ||
python3 -m pip install pimms-learn papermill | ||
- name: Run tutorial | ||
run: | | ||
cd project | ||
papermill 04_1_train_pimms_models.ipynb 04_1_train_pimms_models_output.ipynb |
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 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