pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cargo build'
}
stage('Test') {
sh 'cargo test'
post {
always {
cleanWs()