From 3a2bac26e198cc9cdb996f74302d127fb99432d8 Mon Sep 17 00:00:00 2001 From: reynoldsalec Date: Wed, 20 May 2015 20:09:57 -0700 Subject: [PATCH] Create wercker.yml --- wercker.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 wercker.yml diff --git a/wercker.yml b/wercker.yml new file mode 100644 index 000000000..5f0a79b13 --- /dev/null +++ b/wercker.yml @@ -0,0 +1,18 @@ +box: wercker/php +build: + # The steps that will be executed on build + steps: + # A custom script step, name value is used in the UI + # and the code value contains the command that get executed + - script: + name: install dependencies + code: composer install --no-interaction + - script: + name: echo php information + code: | + echo "php version $(php --version) running" + echo "from location $(which php)" + # Add more steps here: + #- script: + # name: run unit tests + # code: phpunit