First commit

This commit is contained in:
Ramón Vásquez 2025-10-29 13:11:30 -03:00
commit a5150cac16
2 changed files with 23 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,12 @@
pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Running tests...'
sh 'python ./test.py'
}
}
}
}