From 9f9a21a71624ceb8207e4bf08f1bac7060039abf Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski <aaron@trowski.com> Date: Sat, 2 Dec 2023 13:16:38 -0600 Subject: [PATCH] Fix CI build - Added raphf to extensions list, required by pq - Added PHP 8.2 --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4bc91a..88eb9f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,9 @@ jobs: - operating-system: 'ubuntu-latest' php-version: '8.1' + - operating-system: 'ubuntu-latest' + php-version: '8.2' + name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }} runs-on: ${{ matrix.operating-system }} @@ -35,7 +38,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} - extensions: pq + extensions: raphf, pq - name: Get Composer cache directory id: composer-cache