diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index 7668f1b..5b5f637 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -35,9 +35,14 @@ jobs: strategy: matrix: php: [8.0, 8.1, 8.2, 8.3] - container: - image: davidalger/php:${{ matrix.php }} steps: + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + coverage: xdebug + tools: composer:v2 + - name: Checkout Repository uses: actions/checkout@v2 @@ -50,9 +55,14 @@ jobs: phpcs: name: Code Style (PSR-12) runs-on: ubuntu-latest - container: - image: davidalger/php:8.3 steps: + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: 8.3 + coverage: xdebug + tools: composer:v2 + - name: Checkout Repository uses: actions/checkout@v2