From fe593ea99eeacf506ad061fd20e60371837c0378 Mon Sep 17 00:00:00 2001 From: Hirofumi Wakasugi <333180+5t111111@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:01:46 +0900 Subject: [PATCH] Add CI Check workflow for PHP versions 8.2 to 8.5 --- .github/workflows/ci-check.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/ci-check.yml diff --git a/.github/workflows/ci-check.yml b/.github/workflows/ci-check.yml new file mode 100644 index 0000000..57b30dc --- /dev/null +++ b/.github/workflows/ci-check.yml @@ -0,0 +1,34 @@ +name: CI Check + +on: + push: + branches: + - main + pull_request: + +jobs: + ci-check: + name: CI Check (PHP ${{ matrix.php }}) + runs-on: ubuntu-latest + + strategy: + matrix: + php: ["8.2", "8.3", "8.4", "8.5"] + + steps: + - uses: actions/checkout@v6 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + coverage: none + + - name: Install dependencies + run: composer install --no-interaction --prefer-dist + + - name: Lint + run: composer lint + + - name: Test + run: composer test