Skip to content

Commit

Permalink
Merge pull request #102 from Mindful-AI-Assistants/FabianaCampanari-p…
Browse files Browse the repository at this point in the history
…atch-1

Create jupyter-execute.yml
  • Loading branch information
FabianaCampanari authored Oct 5, 2024
2 parents 4a703ec + 5e0ab4a commit 2ae7e45
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 2ae7e45

Please sign in to comment.