Skip to content

update alt text

update alt text #13

Workflow file for this run

name: codespell
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: "pip"
- name: Install codespell
run: pip install codespell jupyterlab nbconvert
- name: Preprocess notebooks
run: for i in $(find . -name "*.ipynb"); do jupyter nbconvert --clear-output --inplace $i; done
- name: Run codespell
run: |
codespell content