Skip to content

Commit

Permalink
Update a workflow file for GitHub Actions to test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
matsuo committed Aug 29, 2024
1 parent c11676e commit f3047ca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 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.1"
Expand Down Expand Up @@ -52,7 +53,7 @@ jobs:
compiler: jit
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 @@ -71,7 +72,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
Expand Down

0 comments on commit f3047ca

Please sign in to comment.