@@ -11,11 +11,11 @@ jobs:
1111 if : " !contains(github.event.head_commit.message, 'skip ci')"
1212 name : PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
1313 runs-on : ${{ matrix.os }}
14- continue-on-error : ${{ matrix.php-versions == '8.3 ' }}
14+ continue-on-error : ${{ matrix.php-versions >= '8.4 ' }}
1515 strategy :
1616 fail-fast : false
1717 matrix :
18- php-versions : ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
18+ php-versions : ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1919 os : [ubuntu-latest, windows-latest]
2020
2121 steps :
@@ -48,16 +48,16 @@ jobs:
4848
4949 - name : Install dependencies
5050 run : >
51- curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.6.2 .sh > xp-run &&
51+ curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.8.0 .sh > xp-run &&
5252 composer install --prefer-dist &&
5353 echo "vendor/autoload.php" > composer.pth
5454
5555 - name : Run test suite
56- run : sh xp-run xp.test.Runner src/test/php
56+ run : sh xp-run xp.test.Runner -r Dots src/test/php
5757
5858 - name : Run integration tests
5959 run : >
6060 curl -sSL -O https://github.com/json-patch/json-patch-tests/archive/master.zip &&
6161 unzip master.zip &&
6262 rm master.zip &&
63- sh xp-run xp.test.Runner src/test/php --folder=json-patch-tests-master/
63+ sh xp-run xp.test.Runner -r Dots src/test/php --folder=json-patch-tests-master/
0 commit comments