forgot to wrap the steps in a steps block

pull/29/head
Adam Townsend 2023-10-22 13:19:30 -07:00
parent 282a07c5fb
commit f86da2ed6f
1 changed files with 3 additions and 1 deletions

4
Jenkinsfile vendored
View File

@ -21,7 +21,9 @@ pipeline {
}
}
stage('Code Linting') {
sh 'bundle exec rubocop --format html --out rubocop.html'
steps {
sh 'bundle exec rubocop --format html --out rubocop.html'
}
}
stage('Run tests') {
steps {