Skip to content

Commit f0667bf

Browse files
added Drupal 9.5 and removed Drupal 9.3 from test (#776)
1 parent d2dc18b commit f0667bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- "8.1"
3434
drupal-core:
3535
# Should update the following as the minimum supported version from Drupal.org
36-
- "9.3.x"
3736
- "9.4.x"
37+
- "9.5.x"
3838

3939
steps:
4040

@@ -126,13 +126,13 @@ jobs:
126126
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
127127
128128
- name: "Run PHPUnit tests"
129-
if: ${{ matrix.drupal-core != '9.4.x' || matrix.php-version != '8.1' }}
129+
if: ${{ matrix.drupal-core != '9.5.x' || matrix.php-version != '8.1' }}
130130
run: |
131131
cd drupal
132132
vendor/bin/phpunit -c core --verbose --color --group apigee_edge --testsuite unit,kernel,functional,functional-javascript modules/contrib/apigee_edge
133133
134134
- name: "Run PHPUnit tests with Code Coverage"
135-
if: ${{ matrix.drupal-core == '9.4.x' && matrix.php-version == '8.1' }}
135+
if: ${{ matrix.drupal-core == '9.5.x' && matrix.php-version == '8.1' }}
136136
run: |
137137
cd drupal
138138
cp modules/contrib/apigee_edge/phpunit.core.xml.dist core/phpunit.xml
@@ -146,7 +146,7 @@ jobs:
146146
path: drupal/sites/simpletest/browser_output/*
147147

148148
- name: Upload coverage to Codecov
149-
if: ${{ matrix.drupal-core == '9.4.x' && matrix.php-version == '8.1' }}
149+
if: ${{ matrix.drupal-core == '9.5.x' && matrix.php-version == '8.1' }}
150150
uses: codecov/codecov-action@v3
151151
with:
152152
files: /tmp/coverage.xml

0 commit comments

Comments
 (0)