Jenkinsfile

This commit is contained in:
Artur Nowakowski 2019-11-16 20:53:54 +01:00
parent dd5b8a4ddd
commit 851d13d9d2
1 changed files with 17 additions and 0 deletions

17
Jenkinsfile vendored Normal file
View File

@ -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'
}
}
}
}