Skip to content

Commit

Permalink
Create jupyter-execute.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Fabiana 🚀  Campanari <[email protected]>
  • Loading branch information
FabianaCampanari authored Oct 5, 2024
1 parent 4a703ec commit 5e0ab4a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflow/jupyter-execute.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

name: Executar Jupyter Notebook

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Configurar Python
uses: actions/setup-python@v2
with:
python-version: '3.8'

- name: Instalar dependências
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Executar Jupyter Notebook
run: |
jupyter nbconvert --to notebook --execute my_notebook.ipynb

0 comments on commit 5e0ab4a

Please sign in to comment.