-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #587 from DeepRank/576_add_ipynb_testing_gcroci2
ci: add action for testing the tutorials' notebooks
- Loading branch information
Showing
3 changed files
with
837 additions
and
770 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,62 @@ | ||
name: notebooks | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
# specific folder locations | ||
- ".vscode/**" | ||
- "docs/**" | ||
# filetypes | ||
- "**.md" | ||
- "**.rst" | ||
- "**.cff" | ||
- "**.png" | ||
branches: | ||
- main | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths-ignore: | ||
# specific folder locations | ||
- ".vscode/**" | ||
- "docs/**" | ||
# filetypes | ||
- "**.md" | ||
- "**.rst" | ||
- "**.cff" | ||
- "**.png" | ||
|
||
jobs: | ||
build: | ||
if: github.event.pull_request.draft == false | ||
name: Build for (${{ matrix.python-version }}, ${{ matrix.os }}) | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ["ubuntu-latest"] | ||
python-version: ["3.10"] # ["3.10", "3.11"] | ||
|
||
# https://github.com/marketplace/actions/setup-miniconda#use-a-default-shell | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: ./.github/actions/install-python-and-package | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
extras-require: test, notebooks | ||
pkg-installation-type: "repository" | ||
|
||
- name: Download the data for the tutorials | ||
shell: bash -l {0} | ||
run: | | ||
wget https://zenodo.org/records/8349335/files/data_raw.zip | ||
unzip data_raw.zip -d data_raw | ||
mv data_raw tutorials | ||
- name: Run tutorial notebooks | ||
run: pytest --nbmake tutorials |
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
Oops, something went wrong.