Skip to content

Merge pull request #4 from joakimwinum/dependabot/pip/flake8-gte-7.0.… #10

Merge pull request #4 from joakimwinum/dependabot/pip/flake8-gte-7.0.…

Merge pull request #4 from joakimwinum/dependabot/pip/flake8-gte-7.0.… #10

Workflow file for this run

name: Jupyter
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install autopep8 flake8 jupyterlab
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Convert Jupyter notebooks to Python scripts
run: |
jupyter nbconvert --to script --output-dir=.temp *.ipynb
- name: Lint with autopep8 and get statistics from flake8
run: |
# exit-zero treats all errors as warnings.
# show statistics for Python syntax errors or undefined names.
# the GitHub editor is 127 chars wide.
flake8 . --count --exit-zero --extend-ignore E402,W291 --max-complexity=10 --max-line-length=127 --show-source --statistics
# stop the build if there are Python syntax errors.
autopep8 .temp/. --ignore E402,W291 --recursive --diff --exit-code