Skip to content

Commit

Permalink
Merge pull request #120 from vimeda/hotfix/php-version
Browse files Browse the repository at this point in the history
Make PHP Version configurable
  • Loading branch information
kieranajp authored May 29, 2024
2 parents f8dacbd + 60ef99b commit 56fd9f6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-php.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
on:
workflow_call:
inputs:
php_version:
required: false
type: string
default: 8.1
php_extensions:
required: false
type: string
Expand All @@ -20,7 +24,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: ${{ inputs.php_version }}
tools: composer:v2
extensions: ${{ inputs.php_extensions }}

Expand Down

0 comments on commit 56fd9f6

Please sign in to comment.