From b19ed0606e10d77f4a5a8434b64c15b79906b3cd Mon Sep 17 00:00:00 2001 From: msschwartz21 Date: Sat, 17 Aug 2024 15:19:42 -0400 Subject: [PATCH] Test version of a github workflow to build all exercise notebooks --- .github/workflows/build-notebooks.yaml | 45 ++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/build-notebooks.yaml diff --git a/.github/workflows/build-notebooks.yaml b/.github/workflows/build-notebooks.yaml new file mode 100644 index 0000000..fbda700 --- /dev/null +++ b/.github/workflows/build-notebooks.yaml @@ -0,0 +1,45 @@ +name: Build Notebooks +on: + push: + +jobs: + run: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + python -m pip install -U pip + python -m pip install jupytext nbconvert + + - name: Build notebooks + run: | + jupyter nbconvert 01_CARE/care_solution.ipynb \ + --ClearOutputPreprocessor.enabled=True --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags task --to notebook \ + --output 01_CARE/care_exercise.ipynb + jupyter nbconvert 02_Noise2Void/n2v_solution.ipynb \ + --ClearOutputPreprocessor.enabled=True --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags task --to notebook \ + --output 02_Noise2Void/n2v_exercise.ipynb + jupyter nbconvert 03_COSDD/solution.ipynb \ + --ClearOutputPreprocessor.enabled=True --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags task --to notebook \ + --output 03_COSDD/exercise.ipynb + jupyter nbconvert 03_COSDD/bonus-solution-generation.ipynb \ + --ClearOutputPreprocessor.enabled=True --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags task --to notebook \ + --output 03_COSDD/bonus-exercise.ipynb + jupyter nbconvert 04_DenoiSplit/solution.ipynb \ + --ClearOutputPreprocessor.enabled=True --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags task --to notebook \ + --output 04_DenoiSplit/exercise.ipynb + jupyter nbconvert 05_bonus_Noise2Noise/n2n_solution.ipynb \ + --ClearOutputPreprocessor.enabled=True --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags task --to notebook \ + --output 05_bonus_Noise2Noise/n2n_exercise.ipynb + + - uses: EndBug/add-and-commit@v9 + with: + add: "*.ipynb" \ No newline at end of file