Merge pull request #37 from ayrna/development #36
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: Run tutorials | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "tutorials/**" | |
- "dlordinal/**" | |
- ".github/workflows/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-notebook-tutorials: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install notebook | |
pip install jupyterlab | |
pip install . | |
- name: Grant execute permissions to run_tutorials.sh | |
run: chmod +x build_tools/run_tutorials.sh | |
- name: Run tutorial notebooks | |
run: build_tools/run_tutorials.sh | |
shell: bash |