File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,5 +11,11 @@ and we can get things merged in quicker when we understand its expected usage.
1111Our [ build] ( build.php ) runs the code through the [ PSR-1] ( http://www.php-fig.org/psr/psr-1/ ) coding standard and through our test suite.
1212Failures in either will keep us from merging the pull request. The test suite MUST have 100% code coverage in the report.
1313
14+ There is also a [ docker] ( http://www.docker.com/ ) -based [ fig] ( http://www.fig.sh/ ) configuration that will execute the build inside a docker
15+ container. This is an easy way to build the application:
16+ ``` sh
17+ fig run build
18+ ```
19+
1420## Travis CI
1521Our [ Travis build] ( https://travis-ci.org/dominionenterprises/memoize-php ) executes the build above against pull requests.
Original file line number Diff line number Diff line change 1+ build :
2+ build : tests
3+ volumes :
4+ - .:/code
Original file line number Diff line number Diff line change 1+ FROM nubs/phpunit
2+
3+ CMD ["./build.php" ]
You can’t perform that action at this time.
0 commit comments