Automatic Notebook Generation #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will generate Jupyter notebooks based on the code scripts in the documentation. | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Automatic Notebook Generation | |
on: | |
schedule: | |
- cron: "0 0 * * 2" | |
workflow_dispatch: | |
jobs: | |
auto-notebook: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.9'] | |
os: [ubuntu-latest] | |
steps: | |
- name: Clone hover all branches | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Non-Python Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libsndfile1 | |
- name: Prepare Git | |
run: | | |
git config user.name ${{ secrets.ACTIONS_GIT_USERNAME }} | |
git config user.email ${{ secrets.ACTIONS_GIT_EMAIL }} | |
git checkout pipeline/notebook-generation | |
git merge origin/main --no-edit | |
git push | |
- name: Test with Tox | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade tox tox-gh-actions | |
tox -e test_notebook_generation | |
- name: Update Generated Notebooks | |
run: | | |
git add docs/pipelines/generated/*.ipynb | |
git commit -m "Automatic update of notebooks generated from documentation scripts" | |
git push |