This commit is contained in:
Ramón Vásquez 2025-10-29 13:18:19 -03:00
parent a5150cac16
commit 20a95ff5e0

7
Jenkinsfile vendored
View file

@ -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...'