go-hello-world/Jenkinsfile
2024-03-31 11:28:54 +03:30

13 lines
150 B
Groovy

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