diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..7679191 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ +pipeline { + agent any + + stages { + stage('Checkout') { + steps { + checkout scm + } + } + + stage('Build') { + steps { + sh 'echo Build works' + } + } + + stage('Test') { + steps { + sh 'echo Tests work' + } + } + } +} \ No newline at end of file