Skip to content

Add actions for notebook clearing, building docs, and running unit tests #3

Add actions for notebook clearing, building docs, and running unit tests

Add actions for notebook clearing, building docs, and running unit tests #3

name: CI - Clear notebook outputs

Check failure on line 1 in .github/workflows/clear-notebooks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/clear-notebooks.yml

Invalid workflow file

(Line: 23, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
branches: [ main ]
paths:
- "**/*.ipynb"
- ".github/workflows/clear-notebooks.yml"
pull_request:
paths:
- "**/*.ipynb"
- ".github/workflows/clear-notebooks.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
nbconvert:
name: Clear notebooks
runs-on: ubuntu-latest
steps:
- name: Setup
- uses: ./.github/actions/setup/setup.yml
- name: nbconvert
run: uv run pre-commit run notebook-clear-outputs --all-files