Add README and CI
timw4mail/rusty-numbers/master This commit looks good Details

This commit is contained in:
Timothy Warren 2020-02-18 10:24:53 -05:00
parent c593e38078
commit 58bddf6206
2 changed files with 23 additions and 0 deletions

19
Jenkinsfile vendored Normal file
View File

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

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# Rusty Numbers
Playing around with numeric types in Rust.