Skip to content

Commit 562faa8

Browse files
committed
Initial Commit
0 parents  commit 562faa8

File tree

5 files changed

+1652
-0
lines changed

5 files changed

+1652
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## phpunit-github-actions-printer
2+
3+
> There's a zero-config way to achieve this at [mheap/phpunit-matcher-action](https://github.com/mheap/phpunit-matcher-action)
4+
5+
This is a PHPUnit printer that uses the `::error` and `::warning` functionality of GitHub Actions to add annotiations for failing test runs. It's main differentiator to the above is that it supports adding warnings in addition to errors.
6+
7+
## Usage
8+
9+
Add this printer to your project
10+
11+
```bash
12+
composer require --dev mheap/phpunit-github-actions-printer
13+
```
14+
15+
When you run your tests, specify `mheap\GithubActionsReporter\Printer` as the printer to use
16+
17+
```bash
18+
./vendor/bin/phpunit --printer mheap\\GithubActionsReporter\\Printer /path/to/tests
19+
```

composer.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "mheap/phpunit-github-actions-printer",
3+
"description": "PHPUnit Printer for adding test failures as annotations on GitHub Actions",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Michael Heap",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"autoload": {
13+
"psr-4": {
14+
"mheap\\GithubActionsReporter\\": "src"
15+
}
16+
},
17+
"require": {},
18+
"require-dev": {
19+
"phpunit/phpunit": "^8"
20+
}
21+
}

0 commit comments

Comments
 (0)