pipeline { agent any stages { stage('Build') { steps { sh 'apt install black' sh 'black ./' } } stage('Test') { steps { echo 'Testing..' } } stage('Deploy') { steps { echo 'Deploying....' } } } }