diff --git a/Jenkinsfile b/Jenkinsfile index 0921df2..c786e69 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,11 +1,10 @@ pipeline { - agent any - - stages { - stage('Hello') { - steps { - echo 'Hello World' - } - } - } + agent any + stages { + stage('checkout: Check out from version control') { + steps { + git 'https://git.wmi.amu.edu.pl/s152483/s152483-mlworkshops' + } + } + } } \ No newline at end of file