forked from msyk/FMDataAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yaml
More file actions
26 lines (24 loc) · 767 Bytes
/
action.yaml
File metadata and controls
26 lines (24 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Setup PHP
inputs:
php-version:
description: 'PHP version to setup'
required: false
default: '8.5'
extensions:
description: 'Comma-separated list of PHP extensions to install'
required: false
default: 'mbstring, json, bcmath, zip, pdo, pdo_mysql, pdo_pgsql, pdo_sqlite, exif, gd, ldap, fileinfo'
tools:
description: 'Comma-separated list of tools to install'
required: false
default: composer:2.8.12, phan:6.0.0
runs:
using: "composite"
steps:
- name: Setup PHP
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
with:
php-version: ${{ inputs.php-version }}
coverage: none
extensions: ${{ inputs.extensions }}
tools: ${{ inputs.tools }}