pipeline { agent any stages { stage('Build') { steps { echo 'Building..' // Run black to format all Python files sh 'find . -name "*.py" -exec black {} +' } } stage('Test') { steps { echo 'Testing..' } } stage('Deploy') { steps { echo 'Deploying....' } } } }