Skip to content

Commit f1aed54

Browse files
authored
Use caching for Windows CI and add PHP 7.0/7.1 to matrix (#528)
1 parent 5d9a52e commit f1aed54

File tree

2 files changed

+5
-119
lines changed

2 files changed

+5
-119
lines changed

.github/workflows/config.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
shell: cmd
3232
strategy:
3333
matrix:
34-
version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
34+
version: ["7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
3535
arch: [x64]
3636
ts: [nts, ts]
3737
os: [windows-2019, windows-2022]
@@ -44,17 +44,20 @@ jobs:
4444
- { os: windows-2022, version: "7.4" }
4545
- { os: windows-2022, version: "7.3" }
4646
- { os: windows-2022, version: "7.2" }
47+
- { os: windows-2022, version: "7.1" }
48+
- { os: windows-2022, version: "7.0" }
4749
runs-on: ${{matrix.os}}
4850
steps:
4951
- name: Checkout apcu
5052
uses: actions/checkout@v4
5153
- name: Setup PHP
5254
id: setup-php
53-
uses: php/setup-php-sdk@8d9e79bdbce494591e33d542377778613cfca59f
55+
uses: php/setup-php-sdk@v0.10
5456
with:
5557
version: ${{matrix.version}}
5658
arch: ${{matrix.arch}}
5759
ts: ${{matrix.ts}}
60+
cache: true
5861
- name: Enable Developer Command Prompt
5962
uses: ilammy/msvc-dev-cmd@v1
6063
with:

appveyor.yml

-117
This file was deleted.

0 commit comments

Comments
 (0)