Skip to content

Commit

Permalink
Merge branch 'simonhamp:main' into docs/updateReadme
Browse files Browse the repository at this point in the history
  • Loading branch information
rico-vz committed Jan 8, 2024
2 parents a1290b6 + 43ad6f0 commit e08cb88
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ on:

jobs:
run-tests:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.3]
stability: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
],
"require-dev": {
"spatie/phpunit-snapshot-assertions": "^5.1",
"spatie/phpunit-snapshot-assertions": "^5.1.1",
"phpunit/phpunit": "^10.5",
"spatie/pixelmatch-php": "^1.0"
}
Expand Down
5 changes: 5 additions & 0 deletions tests/Integration/IntegrationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ protected function tearDown(): void
RecursiveIteratorIterator::CHILD_FIRST,
);

/** @var \SplFileInfo $file */
foreach ($files as $file) {
if ($file->getFilename() === '.gitkeep') {
continue;
}

unlink($file->getRealPath());
}
}
Expand Down
Empty file.

0 comments on commit e08cb88

Please sign in to comment.