pipeline { agent { docker { image 'golang:1.22.1' } } stages { stage('Test') { steps { sh 'make test' } } } }