diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..a99de90 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,19 @@ +pipeline { + agent { + docker { + image 'rust:latest' + } + } + stages { + stage('Check') { + steps { + sh "cargo check" + } + } + stage('Test') { + steps { + sh "cargo test" + } + } + } +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..cd4e565 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Rusty Numbers + +Playing around with numeric types in Rust. +