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