From a07fe3e209e6a68a91fd58e98813d74567f2013c Mon Sep 17 00:00:00 2001 From: Liakhovskyi Vladyslav Date: Tue, 12 Dec 2023 02:06:38 +0200 Subject: [PATCH] fix php setup --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9560343..7603304 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} - name: Validate composer.json and composer.lock run: composer validate --strict - name: Cache Composer packages