We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40c8af7 commit 123555fCopy full SHA for 123555f
.github/workflows/conformance.yml
@@ -11,10 +11,14 @@ permissions: read-all
11
12
jobs:
13
build:
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
- php-version: [ '8.1','8.2','8.3' ]
+ os: [ 'ubuntu-latest' ]
18
+ php-version: [ '8.2','8.3', '8.4' ]
19
+ include:
20
+ - os: 'ubuntu-22.04'
21
+ php-version: '8.1'
22
name: PHP ${{ matrix.php-version }} Conformance Test
23
steps:
24
- name: Harden Runner
@@ -70,7 +74,7 @@ jobs:
70
74
functionType: 'http'
71
75
useBuildpacks: false
72
76
cmd: "'php -S localhost:8080 router.php'"
73
-
77
+
78
- name: Run Declarative Typed conformance tests
79
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
80
env:
0 commit comments