From 9c7c445aecb5117063bc832ea83fc6e883320bac Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 27 Feb 2026 17:07:43 +0000 Subject: [PATCH] revert(ci): restore setup-php workflow from 7d9278f Co-Authored-By: Claude Opus 4.6 --- .forgejo/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 4325f2c..da7fc6e 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -10,8 +10,6 @@ jobs: test: name: PHP ${{ matrix.php }} runs-on: ubuntu-latest - container: - image: lthn/build:php-${{ matrix.php }} strategy: fail-fast: true @@ -21,6 +19,13 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Setup PHP + uses: https://github.com/shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite + coverage: pcov + - name: Install dependencies run: composer install --prefer-dist --no-interaction --no-progress