-
Notifications
You must be signed in to change notification settings - Fork 3
Add execution of notebooks to CI #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
observingClouds
wants to merge
26
commits into
main
Choose a base branch
from
fix/notebooks
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3cf510f
add missing dependencies needed for notebook exec
observingClouds 6cc0c8f
add missing functions
observingClouds f8a67a9
fix download to temp file
observingClouds 38c11a4
run notebooks in CI
observingClouds 50e400c
add CDS key to action
observingClouds 003f237
WIP: enable caching
observingClouds f28efb7
add missing modules and function calls
observingClouds 984ffd5
add missing dependencies
observingClouds d5fcec9
apply formatting
observingClouds 8d640d6
fail on notebook exec failure
observingClouds dde99f9
add cell specific timeouts
observingClouds c8f2aa2
raise errors on failed execution
observingClouds 8776dd4
fix link to image
observingClouds cda9aa1
fix header start level
observingClouds fca19d9
remove unlinked/empty docu pages
observingClouds 3fc8788
link to Open Data page entry
observingClouds 92dda7f
link to github issue page
observingClouds 0673bb5
remove links to empty pages
observingClouds f435b2c
remove additional unused doc file
observingClouds 90c5eac
remove unknown lexer
observingClouds fc9d49a
create artifacts even on doc build failure
observingClouds 9fa14f3
fix some linter errors
observingClouds 5dc667b
linting
observingClouds 389d815
set notebook wide timeout
observingClouds 7a608dd
timeout ms
observingClouds 25c81ca
set timeout centrally
observingClouds File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -22,4 +22,4 @@ jobs: | |
| else | ||
| echo "You must update CHANGELOG.md before merging into main." | ||
| exit 1 | ||
| fi | ||
| fi | ||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -47,4 +47,4 @@ | |
| "affiliation": "Danish Meteorological Institute" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| # About DANRA | ||
| DANRA is a high-resolution meteorological reanalysis dataset for Denmark and Northwestern Europe developed by the Danish Meteorological Institute (DMI). The dataset covers the period September 1990 to December 2023. It is produced using state of the art numerical models and data assimilation, three-hourly analyses and hourly forecasts on a 2.5 km spatial grid. | ||
|
|
||
| The DANRA-Book is a collection of resources for the DANRA project. | ||
| The DANRA-Book is a collection of resources for the DANRA project. |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 deleted.
Oops, something went wrong.
This file contains hidden or 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 deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actions/cache does not perform shell expansion for inputs; using "$TMPDIR/.pkl" and "$TMPDIR/.grib" will likely not match anything, so the cache won’t be restored/saved. Use an explicit path like "${{ runner.temp }}/.pkl" (or "/tmp/.pkl") instead.