pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh 'cargo build'
}
stage('Test') {
sh 'cargo test --all'