From f3bae8047ae8628c3b74de9da734d72e3ba9f744 Mon Sep 17 00:00:00 2001 From: Atsushi Matsuo Date: Sat, 27 Jul 2024 04:19:36 +0900 Subject: [PATCH] Test --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7fb11786..aa3d01132 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: push: branches: - 'master' + - 'test' name: CI @@ -23,6 +24,7 @@ jobs: matrix: os: - ubuntu-latest + - windows-latest php-version: - "7.2" @@ -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' @@ -68,7 +70,7 @@ 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') }} @@ -76,7 +78,7 @@ jobs: v5r1-${{ runner.os }}-php-${{ matrix.php-version }}- - name: Install dependencies - uses: php-actions/composer@v6 + run: composer install - name: Run make run: make -B