ium_495716/Jenkinsfile
2024-03-20 14:58:28 +01:00

12 lines
141 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
sh 'ls -las'
}
}
}
}