Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coder-3418190
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
coder-3418190
Commits
1a1613d8
Unverified
Commit
1a1613d8
authored
1 year ago
by
Klaus Purer
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
test(php): Enable PHP 8.3 testing
parent
eb31ae91
Branches
8.3.x
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/testing.yml
+7
-9
7 additions, 9 deletions
.github/workflows/testing.yml
with
7 additions
and
9 deletions
.github/workflows/testing.yml
+
7
−
9
View file @
1a1613d8
...
...
@@ -7,16 +7,16 @@ jobs:
strategy
:
fail-fast
:
false
matrix
:
php-versions
:
[
'
7.2'
,
'
7.3'
,
'
7.4'
,
'
8.0'
,
'
8.1'
]
php-versions
:
[
'
7.2'
,
'
7.3'
,
'
7.4'
,
'
8.0'
,
'
8.1'
,
'
8.2'
]
extra-tests
:
[
'
0'
]
# We only need to run PHPStan and Druapl core regression tests once on
# the latest PHP version.
include
:
-
php-versions
:
'
8.
2
'
-
php-versions
:
'
8.
3
'
extra-tests
:
'
1'
steps
:
-
name
:
Checkout Coder
uses
:
actions/checkout@v
3
uses
:
actions/checkout@v
4
-
name
:
Setup PHP, with composer and extensions
uses
:
shivammathur/setup-php@v2
...
...
@@ -31,7 +31,7 @@ jobs:
run
:
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
-
name
:
Cache composer dependencies
uses
:
actions/cache@v
3
uses
:
actions/cache@v
4
with
:
path
:
${{ steps.composercache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
...
...
@@ -72,10 +72,8 @@ jobs:
-
name
:
Run PHPCS on Drupal core for regressions
if
:
${{ matrix.extra-tests == '1' }}
# @todo Remove the ignored files once Drupal core has fixed them.
# In case more Drupal core files have known problems that should be
# ignored, add them with the --ignore option.
# In case Drupal core files have known problems that should be
# ignored temporarily, add them with the --ignore option.
run
:
|
cd drupal/core
../../vendor/bin/phpcs -p \
--ignore=modules/sdc/src/ExtensionType.php,lib/Drupal/Core/Database/Transaction/ClientConnectionTransactionState.php,lib/Drupal/Core/Database/Transaction/StackItemType.php
../../vendor/bin/phpcs -p
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment