Skip to content

Commit 1997337

Browse files
author
Greg Bowler
committed
Merge remote-tracking branch 'origin/master'
2 parents 6e77717 + 84c4210 commit 1997337

File tree

3 files changed

+261
-79
lines changed

3 files changed

+261
-79
lines changed

.github/workflows/ci-coverage.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI-coverage
2+
3+
on: [push]
4+
5+
jobs:
6+
build-test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- uses: php-actions/composer@v5
13+
14+
- name: PHPUnit Tests
15+
uses: php-actions/phpunit@v2
16+
with:
17+
php_extensions: xdebug
18+
bootstrap: vendor/autoload.php
19+
configuration: test/phpunit.xml
20+
args: --coverage-text
21+
env:
22+
XDEBUG_MODE: coverage

composer.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,10 @@
33
"description": "Example project using php-actions/phpunit",
44

55
"require-dev": {
6-
"ext-bcmath": "*",
76
"ext-curl": "*",
87
"ext-dom": "*",
9-
"ext-gd": "*",
10-
"ext-intl": "*",
118
"ext-json": "*",
12-
"ext-pdo": "*",
13-
"ext-pdo_mysql": "*",
149
"ext-sqlite3": "*",
15-
"ext-zip": "*",
1610
"phpunit/phpunit": "9.*"
1711
},
1812
"autoload": {
@@ -25,4 +19,4 @@
2519
"App\\Test\\": "test"
2620
}
2721
}
28-
}
22+
}

0 commit comments

Comments
 (0)