mieszkania5/Jenkinsfile

13 lines
232 B
Groovy

pipeline {
agent {
docker { image 'python:3.10' }
}
stages {
stage('Test') {
steps {
sh 'pip install --user black'
sh 'black ./'
}
}
}
}