Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
matsuo committed Jul 26, 2024
1 parent d6153d4 commit f3bae80
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- 'master'
- 'test'

name: CI

Expand All @@ -23,6 +24,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest

php-version:
- "7.2"
Expand Down Expand Up @@ -52,7 +54,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 +70,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 f3bae80

Please sign in to comment.