Attempt to automate tests with Jenkins
Some checks failed
timw4mail/json-parser/master There was a failure building this commit

This commit is contained in:
Timothy Warren 2020-02-12 09:54:14 -05:00
parent 41a33ba66f
commit d512cd10c2

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'rust:latest'
}
}
stages {
stage('Check') {
sh "cargo check"
}
stage('Test') {
sh "cargo test"
}
}
}