Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/loristest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.3', '8.4']
php: ['8.4', '8.5']
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.3', '8.4']
php: ['8.4', '8.5']
apiversion: ['v0.0.3', 'v0.0.4-dev']
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -220,21 +220,21 @@ jobs:
fail-fast: false
matrix:
testsuite: ['integration']
php: ['8.3', '8.4']
php: ['8.4', '8.5']
ci_node_index: [0,1,2,3]

include:
# add a variable but do not display it in the job's name
- ci_node_total: 4

- testsuite: 'static'
php: '8.3'
- testsuite: 'unit'
php: '8.3'
- testsuite: 'static'
php: '8.4'
- testsuite: 'unit'
php: '8.4'
- testsuite: 'static'
php: '8.5'
- testsuite: 'unit'
php: '8.5'

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 2 additions & 6 deletions .phan/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,12 @@
"test"
],
'exclude_file_list' => [
'vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/DoubleQuotedStringTest.inc'
'vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/DoubleQuotedStringTest.inc',
'vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.inc',
],
"exclude_analysis_directory_list" => [
"vendor"
],
"autoload_internal_extension_signatures" => [
// Xdebug stubs are bundled with Phan 0.10.1+/0.8.9+ for usage,
// because Phan disables xdebug by default.
"xdebug" => "vendor/phan/phan/.phan/internal_stubs/xdebug.phan_php",
],
"plugins" => [
"UnreachableCodePlugin",
]
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"require-dev" : {
"squizlabs/php_codesniffer" : "^3.5",
"phpunit/phpunit" : "12.5.8",
"phan/phan": "^5.0",
"phan/phan": "^6.0",
"phpstan/phpstan": "^1.4",
"slevomat/coding-standard": "^6.4",
"php-webdriver/webdriver" : "dev-main",
Expand Down
Loading
Loading