diff --git a/.github/workflows/autodoc_tutorials.yml b/.github/workflows/autodoc_tutorials.yml index 9c15fbb3..70bc1e1c 100644 --- a/.github/workflows/autodoc_tutorials.yml +++ b/.github/workflows/autodoc_tutorials.yml @@ -25,6 +25,9 @@ jobs: - name: Install jupyter run: poetry install -E notebook + - name: Install pandoc + run: sudo apt-get install pandoc + # Execute and convert notebooks - name: execute notebooks run: find $GITHUB_WORKSPACE/tutorial -type f -name "*.ipynb" -exec poetry run jupyter-nbconvert --execute --to notebook --inplace {} \; diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c02f7fa2..84500bc7 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -3,7 +3,9 @@ name: linting -on: [push] +on: + push: + branches: main jobs: build: