Skip to content

Commit 86efe63

Browse files
committed
Use phing to execute CI checks
1 parent 5ed9b5d commit 86efe63

File tree

4 files changed

+112
-2
lines changed

4 files changed

+112
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install:
1212
- composer install
1313

1414
script:
15-
- vendor/bin/phpunit
15+
- vendor/bin/phing
1616

1717
after_success:
1818
- bash <(curl -s https://codecov.io/bash)

build.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project name="Debug functions" default="all">
3+
4+
<target name="all" depends="tests"/>
5+
6+
<target name="tests">
7+
<exec
8+
executable="vendor/bin/phpunit"
9+
logoutput="true"
10+
passthru="true"
11+
checkreturn="true"
12+
>
13+
</exec>
14+
</target>
15+
16+
</project>

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"psr/log": "^1.0"
1515
},
1616
"require-dev": {
17+
"phing/phing": "^2.16",
1718
"phpunit/phpunit": "^8.0"
1819
},
1920
"autoload": {

composer.lock

Lines changed: 94 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)