Skip to content

Commit 84a2b40

Browse files
authored
Merge branch 'main' into w3c-session-fix
2 parents 0efaf28 + cc9c601 commit 84a2b40

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/Tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
push:
77
branches:
88
- main
9-
schedule:
10-
- cron: '0 0 * * *' # every day at midnight
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -19,17 +17,22 @@ jobs:
1917

2018
strategy:
2119
matrix:
22-
php: [ '7.4', '8.0', '8.1', '8.2' ]
20+
php: [ '8.0', '8.3' ]
2321
fail-fast: false
2422

2523
steps:
2624
- uses: actions/checkout@v3
2725

2826
- uses: ddev/github-action-setup-ddev@v1
27+
with:
28+
autostart: false
2929

3030
- name: Setup PHP Version
3131
run: ddev config --php-version ${{ matrix.php }}
3232

33+
- name: Start ddev
34+
run: ddev start
35+
3336
- name: Install dependencies
3437
run: ddev composer install
3538

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"homepage": "https://www.lullabot.com/",
1212
"license": "Apache-2.0",
1313
"require": {
14-
"ext-curl": "*"
14+
"ext-curl": "*",
15+
"php": ">=8.0.0"
1516
},
1617
"require-dev": {
1718
"phpunit/phpunit": "^8.5 || ^9.5"

test/Test/WebDriver/ChromeDriverTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class ChromeDriverTest extends WebDriverTestBase
3838
protected $testWebDriverRootUrl = 'http://localhost:9515';
3939
protected $testWebDriverName = 'chromedriver';
4040
protected $w3c = true;
41+
protected $status = null;
4142

4243
protected function setUp(): void
4344
{

test/Test/WebDriver/GeckoDriverTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class GeckoDriverTest extends WebDriverTestBase
3737
{
3838
protected $testWebDriverRootUrl = 'http://localhost:4444';
3939
protected $testWebDriverName = 'geckodriver';
40+
protected $status = null;
4041

4142
protected function setUp(): void
4243
{

0 commit comments

Comments
 (0)