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