Setting up the framework #1

Merged
PootisPenserHere merged 3 commits from settingUpTheFramework into master 2018-08-05 00:33:04 +00:00
Showing only changes of commit 27365b9ef6 - Show all commits

21
api-payroll/buildspec.yml Normal file
View File

@ -0,0 +1,21 @@
version: 0.2
phases:
install:
commands:
- echo Entered the install phase...
- cd api-payroll
- composer install
pre_build:
commands:
- echo Entered the pre_build phase...
build:
commands:
- echo Entered the build phase...
- echo Build started on `date`
- composer test
post_build:
commands:
- echo Entered the post_build phase...
- echo Build completed on `date`