Fix source id for example at the end of notebook 01 #237
Workflow file for this run
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 workflow performs PEP8 style checks on the python code in notebook code cells. | |
name: PEP8 Notebook Style Check Execution | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'notebooks/**.ipynb' | |
- '*.yml' | |
jobs: | |
Notebook_PEP8_Check: | |
uses: spacetelescope/notebook-ci-actions/.github/workflows/notebook_pep8check.yml@v3 | |
with: | |
python-version: ${{ vars.PYTHON_VERSION || '3.11'}} |