From 20a95ff5e0ff2bb51da3f87a431c96ceeb2ce296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C3=B3n=20V=C3=A1squez?= Date: Wed, 29 Oct 2025 13:18:19 -0300 Subject: [PATCH] update --- Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 7abfec5..c056e18 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,6 +2,13 @@ pipeline { agent any stages { + stage('Install Python') { + steps { + echo 'Installing Python...' + sh 'sudo apt-get update && sudo apt-get install -y python3 python3-pip' + } + } + stage('Test') { steps { echo 'Running tests...'