Skip to content

Commit 92b6226

Browse files
committed
fixup! wip: develop actions
1 parent 7a3180d commit 92b6226

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/develop.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,18 @@ jobs:
6363
Invoke-WebRequest "https://github.com/php/pie/releases/download/0.8.0/pie.phar" -OutFile "C:\php\pie.phar"
6464
shell: pwsh
6565

66+
- name: Setup PHP
67+
run: |-
68+
$ini = New-Item "C:\php\bin\php.ini" -Force
69+
Add-Content $ini "extension_dir=C:\php\bin\ext"
70+
Add-Content $ini "extension=php_openssl.dll"
71+
6672
- name: Check PHP
6773
run: |-
68-
$env:PATH = "C:\php\devel;C:\php\bin;C:\php\deps\bin;$env:PATH"
6974
C:\php\bin\php.exe -m
75+
76+
- name: Check PIE
77+
run: |-
7078
C:\php\bin\php.exe C:\php\pie.phar --version
7179
7280
- name: Install Snappy

0 commit comments

Comments
 (0)