Skip to content

fix(notebooks): agregar pypdf a la celda de setup de Colab #13

fix(notebooks): agregar pypdf a la celda de setup de Colab

fix(notebooks): agregar pypdf a la celda de setup de Colab #13

Workflow file for this run

name: CI Pipeline - Lógica de Programación
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest test suite
run: |
pytest tests/ -v