json-parser/Jenkinsfile
Timothy Warren da888b743b
All checks were successful
timw4mail/json-parser/master This commit looks good
Attempt to automate tests with Jenkins take 2
2020-02-12 09:58:54 -05:00

19 lines
248 B
Groovy

pipeline {
agent {
docker {
image 'rust:latest'
}
}
stages {
stage('Check') {
steps {
sh "cargo check"
}
}
stage('Test') {
steps {
sh "cargo test"
}
}
}
}