Skip to content

Commit 2cd2aad

Browse files
authored
Set up GitHub Actions (#8)
* Set up GitHub Actions * Make printer work on Windows * Fix Windows paths * Fixed message population on Windows * Fix CS * Update phpcs.xml * Create .gitattributes
1 parent 5f4a36c commit 2cd2aad

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text eol=lf

.github/workflows/push.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
on: push
3+
jobs:
4+
run:
5+
runs-on: ${{ matrix.operating-system }}
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
operating-system: [ubuntu-latest, windows-latest, macos-latest]
10+
php-versions: ['7.3', '7.4']
11+
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
16+
- name: Setup PHP
17+
uses: shivammathur/setup-php@v1
18+
with:
19+
php-version: ${{ matrix.php-versions }}
20+
extensions: mbstring
21+
coverage: xdebug
22+
23+
- name: Composer dependencies
24+
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
25+
26+
- name: Run phpunit
27+
run: ./vendor/bin/phpunit
28+
29+
- name: Run phpcs
30+
run: ./vendor/bin/phpcs

phpcs.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<ruleset name="PSR12">
33
<description>PSR12</description>
4-
<file>./src</file>
4+
<file>src</file>
55
<rule ref="PSR12"/>
66
</ruleset>

src/Printer.php

+10-4
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,24 @@ protected function printDefectTrace(TestFailure $defect): void
4040
$e = $defect->thrownException();
4141

4242
$errorLines = array_filter(
43-
explode(PHP_EOL, (string)$e),
43+
explode("\n", (string)$e),
4444
function ($l) {
4545
return $l;
4646
}
4747
);
4848

49-
list($path, $line) = explode(":", end($errorLines));
49+
$error = end($errorLines);
50+
$lineIndex = strrpos($error, ":");
51+
$path = substr($error, 0, $lineIndex);
52+
$line = substr($error, $lineIndex + 1);
5053

5154
if (!$path) {
5255
list($path, $line) = $this->getReflectionFromTest(
5356
$defect->getTestName()
5457
);
5558
}
5659

57-
$message = explode(PHP_EOL, $e->getMessage())[0];
60+
$message = explode("\n", $e->getMessage())[0];
5861

5962
$type = $this->getCurrentType();
6063
$file = "file={$this->relativePath($path)}";
@@ -73,7 +76,10 @@ protected function getCurrentType()
7376

7477
protected function relativePath(string $path)
7578
{
76-
return str_replace(getcwd() . '/', '', $path);
79+
$relative = str_replace(getcwd() . DIRECTORY_SEPARATOR, '', $path);
80+
// Translate \ in to / for Windows
81+
$relative = str_replace('\\', '/', $relative);
82+
return $relative;
7783
}
7884

7985
protected function getReflectionFromTest(string $name)

0 commit comments

Comments
 (0)