Attempt to automate tests with Jenkins take 2
timw4mail/json-parser/master This commit looks good Details

This commit is contained in:
Timothy Warren 2020-02-12 09:58:54 -05:00
parent d512cd10c2
commit da888b743b
1 changed files with 6 additions and 2 deletions

8
Jenkinsfile vendored
View File

@ -6,10 +6,14 @@ pipeline {
}
stages {
stage('Check') {
sh "cargo check"
steps {
sh "cargo check"
}
}
stage('Test') {
sh "cargo test"
steps {
sh "cargo test"
}
}
}
}