Skip to content

Commit

Permalink
Automatic rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
plstonge authored Jan 29, 2025
1 parent 2228844 commit 9f0e22d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build exercise and solution notebooks

on:
push:
branches:
- main

jobs:
make:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Git checkout latest revision
uses: actions/checkout@v4

# https://github.com/actions/setup-python
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Rebuild the final notebooks
run: |
python make.py -r

0 comments on commit 9f0e22d

Please sign in to comment.