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