Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ composer.phar
/nbproject/
/vendor/
local.env
composer.lock
6 changes: 6 additions & 0 deletions ci-tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

set -e

composer install
./vendor/bin/phpunit --process-isolation tests/
6 changes: 6 additions & 0 deletions codeship-services.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
test:
image: silintl/php7:7.4
volumes:
- ./:/data
working_dir: /data

3 changes: 3 additions & 0 deletions codeship-steps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- name: test
service: test
command: /data/ci-tests.sh