Skip to content

Commit

Permalink
pruebas automatica intento 40 -> actualizacion de commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Hernanatn committed Jan 14, 2025
1 parent daf36ab commit 3d4ad90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pruebas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@ jobs:
uses: actions/github-script@v6
with:
script: |
// Obtener el estado del paso 'Ejecutar Pruebas'
const testStep = jobs['construir-y-probar'].steps.find(step => step.id === 'ejecutar_pruebas');
const testOutcome = testStep?.conclusion === 'success' ?
const testStep = '${{ steps.ejecutar_pruebas.outcome }}';
const testOutcome = testStep === 'success' ?
'✔ Todas las pruebas pasaron correctamente.' :
'❌ Las pruebas fallaron.';
const comment = `Resultado de las pruebas:\n\n${testOutcome}`;
Expand Down
1 change: 0 additions & 1 deletion pruebas/ejemplo_integral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ void servidorEco(int puerto) {
std::cout << "Error al inicializar el servidor: " << errorServidor << std::endl;
return;
}

std::cout << "Servidor iniciado en el puerto " << puerto << " (Socket ID: " << *servidorSocket << ")" << std::endl;

while (true) {
Expand Down

0 comments on commit 3d4ad90

Please sign in to comment.