Skip to content

Commit c86c54c

Browse files
authored
Merge pull request #123 from jrfnl/feature/ghactions-actually-run-tests-php-8.0-plus
GH Actions: actually run the tests on PHP 8.0 + 8.1
2 parents a9aa4fb + 4650dd0 commit c86c54c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup PHP
3636
uses: shivammathur/setup-php@v2
3737
with:
38-
php-version: 7.2
38+
php-version: 7.3
3939
ini-values: memory_limit=2G, display_errors=On, error_reporting=-1
4040
coverage: pcov
4141
tools: phive
@@ -61,6 +61,7 @@ jobs:
6161
runs-on: ${{ matrix.operating-system }}
6262
continue-on-error: ${{ matrix.php-versions == '8.1' }}
6363
strategy:
64+
fail-fast: false
6465
matrix:
6566
operating-system:
6667
- ubuntu-latest
@@ -125,7 +126,6 @@ jobs:
125126
run: composer install --no-interaction --prefer-dist --optimize-autoloader
126127

127128
- name: Run PHPUnit
128-
continue-on-error: true
129129
run: php tools/phpunit
130130

131131
codestyle:

phive.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="phpunit" version="^8.4" installed="8.4.3" location="./tools/phpunit" copy="true"/>
3+
<phar name="phpunit" version="^9.5" installed="9.5.8" location="./tools/phpunit" copy="true"/>
44
</phive>

phpunit.xml.dist

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
<testsuite name="unit">
1111
<directory>./tests/unit/</directory>
1212
</testsuite>
13-
<testsuite name="integration">
14-
<directory>./tests/integration/</directory>
15-
</testsuite>
1613
</testsuites>
1714
<filter>
1815
<whitelist>

0 commit comments

Comments
 (0)