Skip to content

Commit 123555f

Browse files
authored
fix: use ubuntu 22 for php 8.1 (#226)
1 parent 40c8af7 commit 123555f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/conformance.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ permissions: read-all
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
php-version: [ '8.1','8.2','8.3' ]
17+
os: [ 'ubuntu-latest' ]
18+
php-version: [ '8.2','8.3', '8.4' ]
19+
include:
20+
- os: 'ubuntu-22.04'
21+
php-version: '8.1'
1822
name: PHP ${{ matrix.php-version }} Conformance Test
1923
steps:
2024
- name: Harden Runner
@@ -70,7 +74,7 @@ jobs:
7074
functionType: 'http'
7175
useBuildpacks: false
7276
cmd: "'php -S localhost:8080 router.php'"
73-
77+
7478
- name: Run Declarative Typed conformance tests
7579
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
7680
env:

0 commit comments

Comments
 (0)