Skip to content

Agregué un comentario a la función #7

Agregué un comentario a la función

Agregué un comentario a la función #7

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ] # Cambia "main" si tu rama principal tiene otro nombre.
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Run tests
run: |
python -m unittest test_suma.py