diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..e236fcc --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,17 @@ +pipeline { + agent { + docker { image 'circleci/php:7.3' } + } + stages { + stage('Build'){ + steps { + sh 'composer install' + } + } + stage('Test') { + steps { + sh 'vendor/bin/phpunit' + } + } + } +}