diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..8bbb15e --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +//Test jenkins -> github Organization +pipeline { + agent any + stages { + stage('Stage 1') { + steps { + echo 'Hello world!' + } + } + } +}