Skip to content

Commit

Permalink
Update a workflow file for GitHub Actions to test on Windows (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
matsuo authored Aug 28, 2024
1 parent c8f1853 commit cb09fda
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest

php-version:
- "7.2"
Expand Down Expand Up @@ -52,7 +53,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Override PHP ini values for JIT compiler
if: matrix.compiler == 'jit'
Expand All @@ -68,15 +69,15 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: v5r2-${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
v5r1-${{ runner.os }}-php-${{ matrix.php-version }}-
- name: Install dependencies
uses: php-actions/composer@v6
run: composer install

- name: Run make
run: make -B
Expand Down

0 comments on commit cb09fda

Please sign in to comment.