pipeline { agent any stages { stage('Build') { steps { sh "cargo build" } } stage('Clippy') { steps { sh "cargo clippy --all" } } } }