This commit is contained in:
Zofia Zientek 2023-10-24 18:38:37 +02:00
commit e12abdf254

23
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
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....'
}
}
}
}