pipeline { agent { docker { image 'circleci/php:7.3' } } stages { stage('Build'){ steps { sh 'composer install' } } stage('Test') { steps { sh 'vendor/bin/phpunit' } } } }