From f0765192f8b007629e85a98af362912ef00ae1ca Mon Sep 17 00:00:00 2001 From: Willem Turkstra Date: Mon, 8 Apr 2024 21:53:03 +0200 Subject: [PATCH] Github actions --- .github/workflows/php.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 9df6878..19f7daa 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -15,11 +15,14 @@ jobs: steps: - uses: actions/checkout@v3 - with: - php_version: "8.2" - name: Validate composer.json and composer.lock run: composer validate --strict + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: 8.2 + - name: Cache Composer packages id: composer-cache uses: actions/cache@v3