mieszkania5/Jenkinsfile

13 lines
232 B
Plaintext
Raw Permalink Normal View History

2023-10-24 17:51:47 +02:00
pipeline {
2023-10-24 18:40:20 +02:00
agent {
2023-10-24 18:52:43 +02:00
docker { image 'python:3.10' }
2023-10-24 18:40:20 +02:00
}
2023-10-24 17:51:47 +02:00
stages {
stage('Test') {
steps {
2023-10-24 18:54:07 +02:00
sh 'pip install --user black'
2023-10-24 18:52:43 +02:00
sh 'black ./'
2023-10-24 17:51:47 +02:00
}
}
}
}