Skip to content

merge from devel

merge from devel #1829

Workflow file for this run

name: 'Test Jupyter notebooks'
# **What**: runs all the notebooks of RP documentation
# **Why** : integration testing of RADICAL-Pilot on GNU/Linux localhost;
# make sure that the documentation works for the current
# RADICAL-Pilot release
# **Who** : Docs content and testing.
on:
push:
branches:
- 'devel*'
pull_request:
branches:
- 'devel*'
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test-getting_started:
uses: ./.github/workflows/run-rp-notebook.yml
with:
<<<<<<< HEAD

Check failure on line 26 in .github/workflows/docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
python-version: 3.8
||||||| 42a9b94c3
python-version: 3.7
=======
python-version: 3.9
>>>>>>> devel
requirements-file: 'requirements-docs-ci.txt'
notebook-name: 'getting_started.ipynb'
test-tutorials:
strategy:
matrix:
tutorial: [
'configuration.ipynb',
'debugging.ipynb',
'describing_tasks.ipynb',
'multiple_pilots.ipynb',
'profiling.ipynb',
'raptor.ipynb',
'raptor_mpi.ipynb',
'staging_data.ipynb',
'submission.ipynb'
]
uses: ./.github/workflows/run-rp-notebook.yml
with:
python-version: 3.9
requirements-file: 'requirements-docs-ci.txt'
notebook-name: ${{ matrix.tutorial }}
notebook-path: 'tutorials'