pipeline {
  agent any
  stages {
    stage('Test') {
      steps {
        sh '/Users/markosirec/workspace/gls-italy-sdk/vendor/bin/phpunit tests'
      }
    }

  }
}