Skip to content

.github/workflows/weekly_pep8_style_check.yml #139

.github/workflows/weekly_pep8_style_check.yml

.github/workflows/weekly_pep8_style_check.yml #139

## This workflow performs weekly PEP8 style checks on python code in all python scripts and
## in notebook code cells of all Jupyter notebooks in the hst_notebooks repository.
name: Weekly PEP8 Style Checks
on:
# Runs Sunday 0400 UTC
schedule:
- cron: "0 4 * * 0"
workflow_dispatch:
jobs:
Notebook_PEP8_Check:
uses: spacetelescope/notebook-ci-actions/.github/workflows/all_notebooks_pep8check.yml@v1

Check failure on line 13 in .github/workflows/weekly_pep8_style_check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/weekly_pep8_style_check.yml

Invalid workflow file

error parsing called workflow ".github/workflows/weekly_pep8_style_check.yml" -> "spacetelescope/notebook-ci-actions/.github/workflows/all_notebooks_pep8check.yml@v1" : failed to fetch workflow: workflow was not found.
with:
python-version: ${{ vars.PYTHON_VERSION || '3.11' }}
Script_PEP8_Check:
uses: spacetelescope/notebook-ci-actions/.github/workflows/all_scripts_pep8check.yml@v1
with:
python-version: ${{ vars.PYTHON_VERSION || '3.11' }}