Skip to content

Commit

Permalink
fix(ci): fix php version
Browse files Browse the repository at this point in the history
  • Loading branch information
imdhemy committed Mar 22, 2024
1 parent 5f33e57 commit 2d4dc28
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: "Continuous Integration"

env:
PHP_VERSION: 8.3

on:
pull_request:
push:
Expand All @@ -16,7 +19,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
coverage: "pcov"
php-version: "8.3"
php-version: ${{ env.PHP_VERSION }}
ini-values: memory_limit=-1
extensions: sodium, fileinfo, redis

Expand All @@ -38,7 +41,7 @@ jobs:
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
php-version: ${{ env.PHP_VERSION }}
ini-values: memory_limit=-1
extensions: sodium, fileinfo, redis

Expand All @@ -60,7 +63,7 @@ jobs:
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
php-version: ${{ env.PHP_VERSION }}
ini-values: memory_limit=-1
extensions: sodium, fileinfo, redis

Expand Down

0 comments on commit 2d4dc28

Please sign in to comment.