Added Jenkinsfile

This commit is contained in:
Allyssa Poulin 2023-02-06 20:47:54 -05:00
parent 3472187155
commit e754cc0b1b
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('') {
steps {
withSonarQubeEnv 'Sonarqube'
}
}
}
}